/* ===========================================
   LIDIANE ANDRADE - LANDING PAGE
   Paleta: SENSUAL
   =========================================== */

/* CSS Reset & Variables */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Cores */
  --burgundy: #610C27;
  --burgundy-dark: #4a0920;
  --taupe: #AC9C8D;
  --blush: #E3C1B4;
  --cream: #DDD9CE;
  --ivory: #EFECE9;
  --black: #050505;
  --white: #FFFFFF;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background-color: var(--ivory);
  color: var(--black);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================================
   BUTTONS
   =========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--burgundy);
  color: var(--ivory);
  border-color: var(--burgundy);
}

.btn-primary:hover {
  background-color: var(--burgundy-dark);
  border-color: var(--burgundy-dark);
}

.btn-secondary {
  background-color: transparent;
  color: var(--blush);
  border-color: var(--blush);
}

.btn-secondary:hover {
  background-color: var(--blush);
  color: var(--burgundy);
}

/* ===========================================
   IMAGE PLACEHOLDERS
   =========================================== */
.image-placeholder {
  background: linear-gradient(135deg, var(--cream) 0%, var(--blush) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  color: var(--taupe);
}

.image-placeholder::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 2px dashed var(--taupe);
  border-radius: inherit;
  pointer-events: none;
}

.image-placeholder span {
  font-size: 14px;
  font-weight: 500;
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

/* ===========================================
   HERO SECTION
   =========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  background-image: url('imagens/hero-bride.jpg');
  background-size: cover;
  background-position: center right;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.65) 40%, rgba(0,0,0,0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 580px;
  padding: 0 60px;
  color: white;
  text-align: left;
}

.hero-subtitle {
  color: var(--blush);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 16px;
  color: white;
}

.hero-title span {
  display: block;
  color: var(--blush);
}

.hero-tagline {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 0 40px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--taupe);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background-color: var(--taupe);
  border-radius: 4px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===========================================
   EXPERIENCE SECTION
   =========================================== */
.experience {
  padding: 96px 0 128px;
  background-color: var(--burgundy);
}

.experience-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.divider {
  width: 64px;
  height: 1px;
  background-color: var(--blush);
  margin: 0 auto 32px;
}

.experience-text {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.6;
  margin-bottom: 32px;
}

.experience-text em {
  color: var(--blush);
  font-style: italic;
}

.experience-subtext {
  font-size: 18px;
  font-weight: 300;
  color: rgba(239, 236, 233, 0.8);
  line-height: 1.7;
}

.experience-content .divider:last-child {
  margin: 32px auto 0;
}

/* ===========================================
   BRIDE DAY SECTION
   =========================================== */
.bride-day {
  padding: 96px 0 128px;
  background-color: var(--ivory);
}

.bride-day-grid {
  display: grid;
  gap: 64px;
  align-items: center;
}

@media (min-width: 1024px) {
  .bride-day-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.bride-day-image-wrapper {
  position: relative;
}

.bride-day-image-decoration {
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 100%;
  height: 100%;
  background-color: var(--blush);
  border-radius: 8px;
}

.bride-day-image {
  aspect-ratio: 4/3;
  position: relative;
  z-index: 1;
}

.section-subtitle {
  color: var(--burgundy);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 24px;
}

.section-title span {
  display: block;
  color: var(--burgundy);
  font-style: italic;
}

.section-description {
  font-size: 18px;
  font-weight: 300;
  color: rgba(5, 5, 5, 0.8);
  line-height: 1.7;
  margin-bottom: 32px;
}

.services-list {
  list-style: none;
  margin-bottom: 32px;
}

.services-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.check-icon {
  width: 24px;
  height: 24px;
  background-color: var(--burgundy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ivory);
}

.services-list span {
  font-weight: 300;
}

.services-note {
  font-size: 14px;
  color: var(--taupe);
  font-style: italic;
}

/* ===========================================
   OTHER SERVICES SECTION
   =========================================== */
.services {
  padding: 96px 0 128px;
  background-color: var(--cream);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title-center {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 300;
  margin-bottom: 24px;
}

.section-title-center span {
  display: block;
  color: var(--burgundy);
  font-style: italic;
}

.section-description-center {
  font-size: 18px;
  font-weight: 300;
  color: rgba(5, 5, 5, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  text-align: left;
}

.service-image {
  aspect-ratio: 3/4;
  margin-bottom: 16px;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image {
  transform: scale(1.02);
}

.service-card h3 {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: var(--taupe);
}

/* ===========================================
   STUDIO SECTION
   =========================================== */
.studio {
  padding: 96px 0 128px;
  background-color: var(--ivory);
}

.studio-grid {
  display: grid;
  gap: 64px;
  align-items: center;
}

@media (min-width: 1024px) {
  .studio-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.studio-content {
  order: 2;
}

@media (min-width: 1024px) {
  .studio-content {
    order: 1;
  }
}

.amenities-list {
  list-style: none;
  margin-bottom: 32px;
}

.amenities-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.amenity-icon {
  width: 40px;
  height: 40px;
  background-color: var(--blush);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--burgundy);
}

.amenities-list span {
  font-weight: 300;
}

.studio-note {
  font-size: 14px;
  color: var(--taupe);
  font-style: italic;
}

.studio-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  order: 1;
}

@media (min-width: 1024px) {
  .studio-images {
    order: 2;
  }
}

.studio-image-large {
  aspect-ratio: 3/4;
}

.studio-images-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.studio-image-small {
  aspect-ratio: 1/1;
}

/* ===========================================
   PORTFOLIO SECTION
   =========================================== */
.portfolio {
  padding: 96px 0 128px;
  background-color: var(--burgundy);
}

.section-header-light {
  text-align: center;
  margin-bottom: 64px;
}

.section-subtitle-light {
  color: var(--blush);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 16px;
}

.section-title-light {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 24px;
}

.section-description-light {
  font-size: 18px;
  font-weight: 300;
  color: rgba(239, 236, 233, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

.portfolio-large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 1/1;
}

.portfolio-small {
  aspect-ratio: 1/1;
}

.portfolio-wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

/* ===========================================
   ABOUT SECTION
   =========================================== */
.about {
  padding: 96px 0 128px;
  background-color: var(--ivory);
}

.about-grid {
  display: grid;
  gap: 64px;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image-wrapper {
  position: relative;
}

.about-decoration-1 {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 128px;
  height: 128px;
  background-color: var(--burgundy);
  border-radius: 8px;
  z-index: 0;
}

.about-decoration-2 {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 128px;
  height: 128px;
  background-color: var(--blush);
  border-radius: 8px;
  z-index: 0;
}

.about-image {
  aspect-ratio: 3/4;
  position: relative;
  z-index: 1;
}

.about-text {
  font-size: 18px;
  font-weight: 300;
  color: rgba(5, 5, 5, 0.8);
  line-height: 1.7;
}

.about-text p {
  margin-bottom: 24px;
}

.about-text strong {
  color: var(--burgundy);
  font-weight: 500;
}

.about-quote {
  color: var(--burgundy);
  font-style: italic;
}

/* ===========================================
   TESTIMONIALS SECTION
   =========================================== */
.testimonials {
  padding: 96px 0 128px;
  background-color: var(--cream);
}

.testimonials-grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background-color: var(--ivory);
  padding: 32px;
  border-radius: 8px;
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--blush);
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  color: var(--burgundy);
}

.testimonial-text {
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 24px;
}

.testimonial-author {
  font-size: 14px;
  color: var(--taupe);
}

/* ===========================================
   CTA SECTION
   =========================================== */
.cta {
  padding: 96px 0 128px;
  background-color: var(--burgundy);
  position: relative;
  overflow: hidden;
}

.cta-decoration-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 256px;
  height: 256px;
  background-color: var(--burgundy-dark);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
}

.cta-decoration-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 384px;
  height: 384px;
  background-color: var(--burgundy-dark);
  border-radius: 50%;
  transform: translate(50%, 50%);
  opacity: 0.5;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.divider-light {
  width: 64px;
  height: 1px;
  background-color: var(--blush);
  margin: 0 auto 32px;
}

.cta-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.3;
  margin-bottom: 24px;
}

.cta-title em {
  color: var(--blush);
  font-style: italic;
}

.cta-subtitle {
  font-size: 20px;
  color: rgba(239, 236, 233, 0.8);
  font-weight: 300;
  margin-bottom: 40px;
}

.cta-note {
  font-size: 14px;
  color: rgba(227, 193, 180, 0.6);
  letter-spacing: 0.1em;
  margin-top: 24px;
}

/* ===========================================
   CONTACT SECTION
   =========================================== */
.contact {
  padding: 96px 0 128px;
  background-color: var(--ivory);
}

.contact-grid {
  display: grid;
  gap: 64px;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-items {
  margin-top: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background-color: var(--burgundy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ivory);
}

.contact-label {
  font-weight: 500;
  margin-bottom: 4px;
}

.contact-value {
  color: var(--taupe);
}

.contact-link {
  color: var(--burgundy);
  transition: opacity 0.3s;
}

.contact-link:hover {
  opacity: 0.7;
}

.map-container {
  background-color: var(--cream);
  border-radius: 8px;
  min-height: 320px;
  overflow: hidden;
}

.map-container iframe {
  display: block;
  width: 100%;
  min-height: 320px;
}

/* ===========================================
   FOOTER
   =========================================== */
.footer {
  padding: 32px 0;
  background-color: var(--black);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copy {
  font-size: 14px;
  color: rgba(239, 236, 233, 0.6);
}

.footer-brand {
  font-size: 20px;
  font-weight: 300;
  color: var(--ivory);
}

.footer-brand span {
  color: var(--burgundy);
}

/* ===========================================
   FLOATING WHATSAPP BUTTON
   =========================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

/* ===========================================
   RESPONSIVE UTILITIES
   =========================================== */
@media (max-width: 768px) {
  .hero-content {
    padding: 0 24px;
    max-width: 100%;
  }

  .hero-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 100%);
  }
  
  .scroll-indicator {
    display: none;
  }
}

/* ===========================================
   IMG DIRETAS (SEM WRAPPER PLACEHOLDER)
   =========================================== */
img.bride-day-image,
img.service-image,
img.studio-image-large,
img.studio-image-small,
img.portfolio-large,
img.portfolio-small,
img.portfolio-wide,
img.about-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}