/* ==========================================================================
   DESEJO DO DIA - STYLESHEET
   ========================================================================== */

/* --- 1. DESIGN TOKENS & RESET --- */
:root {
  /* Colors */
  --primary-pink: #ff4a8b;
  --primary-pink-hover: #e03271;
  --secondary-purple: #7a31eb;
  --secondary-purple-light: #f0e6ff;
  --accent-gold: #ffc83b;
  --accent-gold-hover: #e5af21;
  
  --dark-bg-purple: #1e0b30;
  --dark-bg-deep: #120420;
  
  --light-bg-rose: #fff7fa;
  --light-bg-lilac: #faf5ff;
  --white: #ffffff;
  
  --text-dark: #2d1e3d;
  --text-muted: #6e5c80;
  --text-light: #f4eeff;
  
  --success-green: #25d366;
  
  /* Gradients */
  --grad-pink-purple: linear-gradient(135deg, #ff4a8b 0%, #7a31eb 100%);
  --grad-pink-gold: linear-gradient(135deg, #ff4a8b 0%, #ffc83b 100%);
  --grad-purple-dark: linear-gradient(135deg, #1e0b30 0%, #120420 100%);
  --grad-gold-purple: linear-gradient(135deg, #ffc83b 0%, #7a31eb 100%);
  --grad-light: linear-gradient(135deg, #fff7fa 0%, #faf5ff 100%);
  
  /* Fonts */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Shadow & Radius */
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 20px rgba(255, 74, 139, 0.08);
  --shadow-lg: 0 15px 30px rgba(122, 49, 235, 0.15);
  --shadow-glow: 0 0 25px rgba(255, 74, 139, 0.45);
  --shadow-glow-green: 0 0 25px rgba(37, 211, 102, 0.45);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

/* --- 2. LAYOUT UTILITIES --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-pink);
  margin-bottom: 12px;
  display: inline-block;
}

.text-gold {
  color: var(--accent-gold) !important;
}

.text-white {
  color: var(--white) !important;
}

/* --- 3. BUTTONS & UI --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-headings);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  gap: 10px;
}

.btn-gradient {
  background: var(--grad-pink-purple);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(255, 74, 139, 0.25);
}

.btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 74, 139, 0.4);
  background: linear-gradient(135deg, #ff6599 0%, #8c42ff 100%);
}

.btn-header {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn-hero-main {
  flex-direction: column;
  padding: 16px 36px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(255, 74, 139, 0.3);
}

.btn-microcopy {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.9;
  margin-top: 2px;
  font-family: var(--font-body);
}

.btn-hero-sec {
  background-color: var(--white);
  color: var(--text-dark);
  border: 2px solid var(--secondary-purple-light);
  box-shadow: var(--shadow-sm);
}

.btn-hero-sec:hover {
  background-color: var(--secondary-purple-light);
  border-color: var(--primary-pink);
  transform: translateY(-3px);
}

.btn-full {
  width: 100%;
}

.btn-pulse {
  animation: pulseShadow 2s infinite;
}

@keyframes pulseShadow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 74, 139, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 74, 139, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 74, 139, 0);
  }
}

/* Floating WhatsApp Badge */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: var(--success-green);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-glow-green);
  z-index: 1000;
  transition: all var(--transition-normal);
  animation: floatBtn 3s infinite ease-in-out;
}

.floating-whatsapp i {
  font-size: 1.3rem;
}

.floating-whatsapp:hover {
  transform: scale(1.05) translateY(-5px);
  background-color: #20ba56;
}

@keyframes floatBtn {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* --- 4. HEADER --- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
  z-index: 999;
  border-bottom: 1px solid rgba(255, 74, 139, 0.08);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-pink);
  box-shadow: var(--shadow-sm);
}

.logo-text {
  font-family: var(--font-headings);
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--grad-pink-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-menu ul {
  display: flex;
  gap: 32px;
}

.nav-menu a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

.nav-menu a:hover {
  color: var(--primary-pink);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

/* Mobile Nav Menu Dropdown */
.mobile-nav {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  border-bottom: 2px solid var(--secondary-purple-light);
  transform: translateY(-120%);
  transition: transform var(--transition-normal);
  z-index: 998;
  padding: 24px;
}

.mobile-nav.active {
  transform: translateY(0);
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 700;
  display: block;
}

/* --- 5. HERO SECTION --- */
.hero-section.hero-full-banner {
  padding-top: 120px; /* Aligns comfortably below fixed header */
  padding-bottom: 80px;
  background: var(--grad-light);
  overflow: hidden; /* Clips background decor */
  position: relative;
}

/* Glowing visual backdrops on the sides to fill wide screens creatively */
.hero-section.hero-full-banner::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 74, 139, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

.hero-section.hero-full-banner::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(122, 49, 235, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

.hero-banner-wrapper {
  width: 100%;
  max-width: 1000px; /* Centers and limits width on desktop to prevent disproportion */
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white); /* White border framing the banner */
  position: relative;
  z-index: 5;
  background: var(--grad-pink-purple);
}

.hero-full-img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-content-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.hero-overlay-card {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 74, 139, 0.12);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: -60px; /* Overlaps bottom of the banner */
  box-shadow: var(--shadow-lg), 0 20px 40px rgba(122, 49, 235, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-overlay-card .promo-badge {
  margin-bottom: 16px;
}

.hero-overlay-card .hero-title {
  font-family: var(--font-headings);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark-bg-purple);
  margin-bottom: 16px;
  max-width: 800px;
}

.hero-overlay-card .hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 650px;
}

.hero-overlay-card .hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  width: 100%;
}

.hero-overlay-card .trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
  width: 100%;
}

.hero-overlay-card .trust-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.hero-overlay-card .trust-badge-item i {
  color: var(--primary-pink);
  font-size: 1.05rem;
}

/* --- 6. MISSION SECTION --- */
.mission-section {
  padding: 100px 0;
  background-color: var(--white);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 80px;
}

.mission-left {
  max-width: 460px;
}

.mission-title {
  font-family: var(--font-headings);
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--dark-bg-purple);
}

.mission-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mission-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.mission-blocks {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mission-block-item {
  display: flex;
  gap: 20px;
  background-color: var(--light-bg-rose);
  padding: 24px;
  border-radius: var(--radius-md);
  border-left: 5px solid var(--primary-pink);
  transition: transform var(--transition-normal);
}

.mission-block-item:hover {
  transform: translateX(5px);
}

.block-icon {
  background-color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.block-icon i {
  color: var(--primary-pink);
  font-size: 1.3rem;
}

.block-content h3 {
  font-family: var(--font-headings);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.block-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Central Quote */
.quote-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 24px;
  position: relative;
}

.quote-icon {
  font-size: 2.5rem;
  color: var(--secondary-purple-light);
  margin-bottom: 16px;
}

.quote-container blockquote {
  font-family: var(--font-headings);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.4;
  color: var(--secondary-purple);
  margin-bottom: 12px;
}

.quote-container cite {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

/* --- 7. BENEFITS SECTION (DARK BG) --- */
.benefits-section {
  padding: 100px 0;
  background: var(--grad-purple-dark);
  color: var(--text-light);
  position: relative;
}

.benefits-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.benefits-title {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.benefits-subtitle {
  font-size: 1.05rem;
  opacity: 0.8;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 28px;
  transition: all var(--transition-normal);
}

.benefit-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 74, 139, 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.card-image-box {
  width: 130px;
  height: 130px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}

.card-info {
  flex-grow: 1;
}

.card-title {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.card-description {
  font-size: 0.95rem;
  opacity: 0.75;
  line-height: 1.5;
}

/* --- 8. CATEGORIES SECTION --- */
.categories-section {
  padding: 100px 0;
  background-color: var(--light-bg-lilac);
}

.categories-header {
  text-align: center;
  margin-bottom: 60px;
}

.categories-title {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark-bg-purple);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.category-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 1px solid rgba(122, 49, 235, 0.05);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-pink);
}

.cat-img-wrapper {
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: var(--light-bg-rose);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  transition: transform var(--transition-slow);
}

.category-card:hover .cat-img {
  transform: scale(1.08);
}

.cat-content {
  padding: 24px;
  text-align: center;
}

.cat-content h3 {
  font-family: var(--font-headings);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.cat-badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  background-color: var(--secondary-purple-light);
  color: var(--secondary-purple);
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
}

.category-card:hover .cat-badge {
  background-color: var(--primary-pink);
  color: var(--white);
}

/* --- 9. INTERMEDIATE CTA SECTION --- */
.intermediate-cta {
  padding: 60px 0;
  background: var(--white);
}

.cta-container {
  display: flex;
  justify-content: center;
}

.cta-card {
  width: 100%;
  max-width: 900px;
  background: linear-gradient(135deg, rgba(255,74,139,0.06) 0%, rgba(255,200,59,0.08) 100%);
  border: 1px solid rgba(255, 74, 139, 0.15);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 200, 59, 0.2) 0%, rgba(255,255,255,0) 70%);
  z-index: 1;
}

.cta-title {
  font-family: var(--font-headings);
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark-bg-purple);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.btn-cta {
  padding: 16px 36px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.cta-microcopy {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  z-index: 2;
}

.cta-microcopy .bullet {
  color: var(--primary-pink);
  font-size: 1.2rem;
}

/* --- 10. FAQ SECTION --- */
.faq-section {
  padding: 100px 0;
  background-color: var(--white);
  border-top: 1px solid rgba(122, 49, 235, 0.08);
}

.faq-container {
  max-width: 800px;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-title {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark-bg-purple);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid rgba(122, 49, 235, 0.1);
  border-radius: var(--radius-md);
  background-color: var(--white);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item:hover {
  border-color: var(--primary-pink);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-headings);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  outline: none;
}

.faq-question span {
  padding-right: 20px;
}

.faq-arrow {
  color: var(--primary-pink);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.active {
  border-color: var(--primary-pink);
  background-color: var(--light-bg-rose);
}

.faq-item.active .faq-question {
  color: var(--primary-pink);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out;
}

.faq-answer-inner {
  padding: 0 24px 24px 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* --- 11. FINAL CALL SECTION --- */
.final-call-section {
  padding: 80px 0;
  background: var(--light-bg-lilac);
  position: relative;
}

.final-call-container {
  display: flex;
  justify-content: center;
}

.final-call-card {
  width: 100%;
  max-width: 900px;
  background: var(--grad-purple-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.final-call-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(255, 74, 139, 0.15) 0%, rgba(255,255,255,0) 60%);
  pointer-events: none;
}

.sparkles-decor {
  position: absolute;
  color: var(--accent-gold);
  font-size: 1.5rem;
  opacity: 0.6;
  animation: pulseDecor 2s infinite ease-in-out;
}

.sparkles-decor.top-left {
  top: 30px;
  left: 40px;
}

.sparkles-decor.bottom-right {
  bottom: 30px;
  right: 40px;
  animation-delay: 1s;
}

@keyframes pulseDecor {
  0%, 100% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.8;
  }
}

.final-title {
  font-family: var(--font-headings);
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.final-subtitle {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

/* --- 12. FOOTER --- */
.main-footer {
  background-color: var(--dark-bg-deep);
  color: var(--text-light);
  padding-top: 80px;
  padding-bottom: 30px;
  border-top: 2px solid rgba(255, 74, 139, 0.1);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logo-footer {
  margin-bottom: 20px;
}

.footer-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-gold);
}

.footer-desc {
  font-size: 0.95rem;
  opacity: 0.7;
  max-width: 340px;
}

.footer-center h4, 
.footer-right h4 {
  font-family: var(--font-headings);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.footer-center ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-center a {
  font-size: 0.95rem;
  opacity: 0.75;
}

.footer-center a:hover {
  opacity: 1;
  color: var(--primary-pink);
  padding-left: 4px;
}

.btn-footer-cta {
  background-color: var(--success-green);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  font-size: 0.9rem;
  width: 100%;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.15);
}

.btn-footer-cta:hover {
  background-color: #20ba56;
  transform: translateY(-2px);
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0.8;
}

.social-icons a:hover {
  opacity: 1;
  background-color: var(--primary-pink);
  color: var(--white);
  transform: scale(1.1);
}

.footer-bottom {
  padding-top: 30px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.5;
}

/* ==========================================================================
   --- 13. RESPONSIVE DESIGN (MEDIA QUERIES) ---
   ========================================================================== */

/* Tablet & Smaller Screens (1024px and down) */
@media (max-width: 1024px) {
  .hero-overlay-card {
    padding: 32px 24px;
    margin-top: -50px;
  }
  
  .hero-overlay-card .hero-title {
    font-size: 2.2rem;
  }
  
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .mission-left {
    max-width: 100%;
    text-align: center;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-left {
    grid-column: span 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-desc {
    max-width: 500px;
  }
}

/* Navigation Change Breakpoint */
@media (max-width: 820px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .header-action .btn-header {
    display: none;
  }
}

/* Small Screens (768px and down) */
@media (max-width: 768px) {
  :root {
    font-size: 15px;
  }
  
  .hero-overlay-card {
    padding: 24px 16px;
    margin-top: -30px;
    border-radius: var(--radius-md);
  }
  
  .hero-overlay-card .hero-title {
    font-size: 1.8rem;
  }

  .hero-overlay-card .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .hero-overlay-card .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 400px;
    gap: 12px;
    margin-bottom: 24px;
  }
  
  .btn-hero-main,
  .btn-hero-sec {
    width: 100%;
  }

  .hero-overlay-card .trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .quote-container blockquote {
    font-size: 1.3rem;
  }
  
  .benefit-card {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
  
  .card-image-box {
    width: 100px;
    height: 100px;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .cta-card {
    padding: 36px 20px;
  }
  
  .cta-title {
    font-size: 1.6rem;
  }
  
  .final-title {
    font-size: 1.8rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-left {
    grid-column: span 1;
  }
  
  .footer-center h4, 
  .footer-right h4 {
    margin-bottom: 16px;
  }
  
  .footer-right {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .btn-footer-cta {
    max-width: 280px;
  }
}

/* Very Small Mobile (480px and down) */
@media (max-width: 480px) {
  .hero-overlay-card .hero-title {
    font-size: 1.5rem;
  }
  
  .floating-whatsapp span {
    display: none;
  }
  
  .floating-whatsapp {
    padding: 14px;
    border-radius: 50%;
    bottom: 16px;
    right: 16px;
  }
  
  .floating-whatsapp i {
    font-size: 1.6rem;
    margin: 0;
  }
}
