/* ==========================================
   CSS DESIGN SYSTEM - DESMAME COM AFETO
   ========================================== */

/* Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;1,400&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Roboto:wght@400;700&display=swap');

:root {
  /* Color Palette */
  --bg-primary: #FFF2E7;   /* Soft warm cream base */
  --bg-white: #FFFFFF;     /* Pure white */
  --bg-secondary: #FFD3D2; /* Soft pastel pink */
  --bg-contrast: #A3745F;  /* Warm terracotta brown */
  --bg-accent: #DEA5A4;    /* Muted rose/dusty pink */

  --text-dark: #6C6462;     /* Warm dark charcoal for readable body text */
  --text-charcoal: #746D6C; /* Secondary text color */
  --text-rose: #D99C9B;     /* Beautiful title highlight color */
  --text-white: #FFFFFF;

  --btn-green: #5FA37A;     /* Primary CTA Green color */
  --btn-green-hover: #DEA5A4;

  /* Font Families */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Lato', 'Roboto', sans-serif;
}

/* Global resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.5;
  font-size: 16px;
  overflow-x: hidden;
}

/* Typography styles */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.25;
}

em {
  font-style: italic;
}

/* Container limits */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Custom CTA Styles */
.cta-safe {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 0;
  overflow: visible;
  width: 100%;
}

.cta-pulse {
  display: inline-block;
  background-color: var(--btn-green);
  color: var(--text-white);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  padding: 20px 75px;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 15px rgba(95, 163, 122, 0.3);
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse 1.8s infinite ease-in-out;
  transform-origin: center;
}

.cta-pulse:hover {
  background-color: var(--btn-green-hover);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(222, 165, 164, 0.4);
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

/* Mobile specific overrides for CTAs */
@media (max-width: 480px) {
  .cta-pulse {
    padding: 16px 20px;
    font-size: 14px;
    width: 100%;
    max-width: 340px;
  }
}

/* Section-specific background classes */
.bg-cream { background-color: var(--bg-primary); }
.bg-white { background-color: var(--bg-white); }
.bg-pink { background-color: var(--bg-secondary); }
.bg-brown { background-color: var(--bg-contrast); color: var(--text-white); }
.bg-rose { background-color: var(--bg-accent); color: var(--text-white); }

/* VSL Hero Section styling */
.hero-section {
  padding: 60px 0;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-logo {
  max-width: 120px;
  margin-bottom: 20px;
}
.hero-title {
  font-size: 42px;
  max-width: 800px;
  margin-bottom: 20px;
}
.hero-title span.rose {
  color: var(--text-rose);
  font-style: italic;
}
.hero-subtitle {
  font-size: 22px;
  margin-bottom: 30px;
  color: var(--text-dark);
}
.video-wrapper {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Card lists & benefits styling */
.benefits-section {
  padding: 80px 0;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.benefits-image {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.benefit-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.benefit-check {
  font-size: 24px;
  color: var(--text-rose);
  line-height: 1;
}
.benefit-text {
  font-size: 18px;
  line-height: 1.4;
  color: var(--text-dark);
}

/* Testimonials / Gallery Grid styling */
.testimonials-section {
  padding: 80px 0;
  text-align: center;
}
.section-title {
  font-size: 40px;
  margin-bottom: 15px;
}
.section-title span.rose {
  color: var(--text-rose);
  font-style: italic;
}
.section-subtitle {
  font-size: 18px;
  margin-bottom: 40px;
}
.testimonial-masonry {
  column-count: 3;
  column-gap: 20px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 40px auto;
  text-align: left;
}
@media (max-width: 992px) {
  .testimonial-masonry {
    column-count: 2;
    column-gap: 15px;
  }
}
@media (max-width: 600px) {
  .testimonial-masonry {
    column-count: 1;
  }
}

.testimonial-card {
  break-inside: avoid;
  background-color: var(--bg-white);
  border-radius: 16px;
  border: 1px solid rgba(163, 116, 95, 0.1);
  padding: 16px;
  margin-bottom: 20px;
  box-shadow: 0 8px 30px rgba(163, 116, 95, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(163, 116, 95, 0.1);
}

.testimonial-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(163, 116, 95, 0.08);
  padding-bottom: 10px;
}

.testimonial-card-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-accent));
  color: var(--text-white);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(222, 165, 164, 0.3);
}

.testimonial-card-meta {
  display: flex;
  flex-direction: column;
}

.testimonial-card-author {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.2;
}

.testimonial-card-subtitle {
  font-size: 12px;
  color: var(--text-charcoal);
  margin-bottom: 2px;
}

.testimonial-card-rating {
  color: #F8B4B4;
  font-size: 12px;
  display: flex;
  gap: 2px;
}

.testimonial-card-image-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(163, 116, 95, 0.05);
}

.testimonial-card-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-card-image-wrapper img {
  transform: scale(1.03);
}

/* Glassmorphism search overlay on hover */
.testimonial-card-image-wrapper::after {
  content: '🔍 Ampliar Depoimento';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(163, 116, 95, 0.4);
  backdrop-filter: blur(2px);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.testimonial-card:hover .testimonial-card-image-wrapper::after {
  opacity: 1;
}

.youtube-testimonial-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 50px auto 0 auto;
}
.youtube-testimonial-container iframe {
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.testimonial-caption {
  margin-top: 15px;
  font-style: italic;
  font-size: 16px;
}

/* Journey/Etapas styling */
.journey-section {
  padding: 80px 0;
}
.journey-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.journey-card {
  background: rgba(255, 242, 231, 0.9) url('https://assets.zyrosite.com/Awv9NwayxeF9zJ15/desmame-com-afeto-card-02-A0xjpPyKRWi1qDO7.svg') no-repeat center;
  background-size: cover;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  text-align: left;
}
.journey-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}
.journey-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text-dark);
}
.journey-card p {
  font-size: 15px;
  line-height: 1.6;
}

/* Association section styling */
.association-section {
  padding: 80px 0;
}
.association-content {
  display: flex;
  align-items: center;
  gap: 60px;
}
.association-left {
  flex: 1.2;
}
.association-right {
  flex: 0.8;
  display: flex;
  justify-content: center;
}
.association-right img {
  max-width: 100%;
  height: auto;
}

/* Method Blocks styling */
.method-section {
  padding: 80px 0;
}
.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}
.method-card {
  background: #FBCFCE url('https://assets.zyrosite.com/Awv9NwayxeF9zJ15/desmame-com-afeto-card-01-4-AMq8oLj86Vf1j2l7.svg') no-repeat center;
  background-size: cover;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.03);
}
.method-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
}
.method-desc {
  display: flex;
  gap: 20px;
}
.method-card .num {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--text-rose);
  line-height: 1;
}
.method-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-family: var(--font-serif);
}
.method-card p {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.5;
}

/* Bonus styling */
.bonus-section {
  padding: 80px 0;
}
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 45px;
}
.bonus-card {
  background: rgba(255, 242, 231, 0.5) url('https://assets.zyrosite.com/Awv9NwayxeF9zJ15/desmame-com-afeto-card-01-Yyv0VOrkZxfGo0J2.svg') no-repeat center;
  background-size: cover;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}
.bonus-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.bonus-info {
  padding: 20px;
  text-align: left;
}
.bonus-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-rose);
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.bonus-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
}
.bonus-card p {
  font-size: 14px;
  color: var(--text-charcoal);
  line-height: 1.4;
}

/* Receive section styling */
.receive-section {
  padding: 80px 0;
}
.receive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.receive-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  border: 1.8px solid rgba(116, 109, 108, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.receive-card-img {
  max-width: 130px;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.receive-card h3 {
  font-size: 20px;
  font-family: var(--font-serif);
  color: var(--text-dark);
  margin-bottom: 12px;
}
.receive-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-charcoal);
}

/* Bio styling */
.bio-section {
  padding: 80px 0;
}
.bio-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.bio-image {
  width: 100%;
  border-radius: 20px;
  display: block;
}
.bio-content h2 {
  font-size: 38px;
  margin-bottom: 20px;
}
.bio-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: var(--text-charcoal);
}

/* Offer pricing section styling */
.offer-section {
  padding: 80px 0;
  background-color: var(--bg-accent);
}
.purchase-card {
  background-color: #FFF2E7;
  border-radius: 30px;
  border: 2px solid #FFFFFF;
  padding: 40px 50px 40px 40px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 40px;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  box-shadow: 0 15px 45px rgba(0,0,0,0.1);
  text-align: center;
}
.purchase-left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.mockup-img {
  width: 100%;
  max-width: 580px;
  height: auto;
  display: block;
}
.purchase-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.purchase-card .cta-pulse {
  white-space: nowrap;
  padding: 20px 35px;
  font-size: 14px;
}
.purchase-logo {
  max-width: 130px;
  margin-bottom: 25px;
}
.price-info {
  margin-bottom: 15px;
}
.price-old {
  font-family: var(--font-sans);
  font-size: 18px;
  text-decoration: line-through;
  color: var(--text-dark);
  margin-bottom: 5px;
}
.price-installments {
  font-family: var(--font-sans);
  font-size: 40px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 5px;
}
.price-installments .price-value {
  color: #D99C9B;
  font-weight: 700;
  font-family: var(--font-serif);
  font-size: 58px;
}
.price-cash {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.payment-badges-wrapper {
  margin-top: 15px;
  width: 100%;
  max-width: 320px;
}
.payment-badges-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Guarantee Card Horizontal */
.guarantee-card-horizontal {
  background: transparent;
  border: 2.5px solid #FFFFFF;
  border-radius: 30px;
  padding: 40px 60px;
  display: flex;
  align-items: center;
  gap: 50px;
  width: 100%;
  max-width: 1100px;
}
.guarantee-left {
  flex-shrink: 0;
}
.guarantee-seal-img {
  max-width: 160px;
  width: 100%;
  height: auto;
  display: block;
}
.guarantee-right {
  color: #FFFFFF;
  text-align: left;
}
.guarantee-right h3 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 1.25;
}
.guarantee-right h3 em {
  font-style: italic;
  font-weight: 400;
}
.guarantee-right p {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.95;
}

/* FAQ Accordion Styling */
.faq-section {
  padding: 80px 0;
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid #EEE;
  padding: 20px 0;
}
.faq-q {
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  color: var(--text-dark);
  padding: 10px 0;
}
.faq-a {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), opacity 0.3s ease;
}
.faq-a p {
  padding-top: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-charcoal);
}
.faq-item.open .faq-a {
  max-height: 1000px;
  opacity: 1;
  transition: max-height 0.5s cubic-bezier(0.86, 0, 0.07, 1), opacity 0.3s ease;
}
.faq-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* Support section styling */
.support-section {
  padding: 70px 0;
  text-align: center;
}
.whatsapp-btn-support {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--btn-green);
  color: var(--text-white);
  font-weight: 700;
  text-decoration: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 16px;
  gap: 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.whatsapp-btn-support:hover {
  background-color: var(--btn-green-hover);
  transform: scale(1.03);
}

/* Footer Section */
footer {
  background-color: var(--bg-primary);
  padding: 40px 0;
  text-align: center;
  font-size: 14px;
  color: var(--text-charcoal);
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}
.social-links a {
  color: var(--text-rose);
  transition: color 0.2s ease;
}
.social-links a:hover {
  color: var(--text-dark);
}

/* Lightbox custom styles */
.custom-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.custom-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}
.custom-lightbox img {
  max-width: 85%;
  max-height: 85%;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.custom-lightbox.active img {
  transform: scale(1);
}
.custom-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  font-size: 45px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 100001;
  line-height: 1;
}

/* Navigable Lightbox buttons */
.custom-lightbox-prev, .custom-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  border: 1.5px solid #FFFFFF;
  font-size: 28px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 100000;
  user-select: none;
}
.custom-lightbox-prev {
  left: 30px;
}
.custom-lightbox-next {
  right: 30px;
}
.custom-lightbox-prev:hover, .custom-lightbox-next:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-50%) scale(1.08);
}

@media (max-width: 768px) {
  .custom-lightbox-prev, .custom-lightbox-next {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
  .custom-lightbox-prev {
    left: 15px;
  }
  .custom-lightbox-next {
    right: 15px;
  }
}


/* ==========================================
   RESPONSIVENESS (MOBILE MEDIA QUERIES)
   ========================================== */
@media (max-width: 992px) {
  .grid-2, .bio-grid, .association-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .bio-grid {
    display: flex;
    flex-direction: column-reverse;
  }
  .association-content {
    flex-direction: column;
  }
  .journey-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .method-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .bonus-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .receive-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* Responsive Purchase and Guarantee Cards */
  .purchase-card {
    grid-template-columns: 1fr;
    padding: 30px 20px;
    gap: 30px;
  }
  .purchase-left {
    justify-content: center;
  }
  .mockup-img {
    max-width: 100%;
    height: auto;
  }
  .guarantee-card-horizontal {
    flex-direction: column;
    padding: 35px 25px;
    gap: 25px;
    text-align: center;
  }
  .guarantee-right {
    text-align: center;
  }
  .guarantee-right h3 {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 28px;
  }
  .hero-subtitle {
    font-size: 18px;
  }
  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .price-installments {
    font-size: 32px;
  }
  .price-installments .price-value {
    font-size: 44px;
  }
  .purchase-card .cta-pulse {
    white-space: normal;
    padding: 20px 25px;
  }
}
