/* ==========================================================================
   Eliana Santos Podologia - Estilos Principais & Design System
   Foco em Alta Conversão, Elegância Médica e Experiência Premium
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Color Palette - Medical Elegance & Clean Comfort */
  --primary-700: #0f766e;
  --primary-600: #0d9488;
  --primary-500: #14b8a6;
  --primary-400: #2dd4bf;
  --primary-100: #ccfbf1;
  --primary-50: #f0fdf4;
  
  --secondary-600: #0284c7;
  --secondary-500: #06b6d4;
  --secondary-100: #e0f2fe;

  --accent-gold: #f59e0b;
  --accent-gold-light: #fef3c7;
  --emergency-red: #ef4444;
  --emergency-bg: #fef2f2;
  
  --dark-900: #0f172a;
  --dark-800: #1e293b;
  --dark-700: #334155;
  --gray-600: #475569;
  --gray-500: #64748b;
  --gray-300: #cbd5e1;
  --gray-100: #f1f5f9;
  --gray-50: #f8fafc;
  --white: #ffffff;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Shadows & Effects */
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 16px -2px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
  --shadow-glow: 0 0 25px rgba(13, 148, 136, 0.25);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* CSS Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark-900);
  line-height: 1.25;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Badge Utilities */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.badge-primary {
  background-color: var(--primary-100);
  color: var(--primary-700);
  border: 1px solid rgba(13, 148, 136, 0.2);
}

.badge-gold {
  background-color: var(--accent-gold-light);
  color: #92400e;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-emergency {
  background-color: var(--emergency-bg);
  color: var(--emergency-red);
  border: 1px solid rgba(239, 68, 68, 0.3);
  animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.95rem 1.8rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-normal);
  border: none;
  text-align: center;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: var(--white);
  box-shadow: 0 10px 20px -5px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -5px rgba(37, 211, 102, 0.5);
  background: linear-gradient(135deg, #28e16f 0%, #149c8c 100%);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
  color: var(--white);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
  box-shadow: 0 12px 25px rgba(13, 148, 136, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary-700);
  border: 2px solid var(--primary-600);
}

.btn-outline:hover {
  background: var(--primary-100);
  color: var(--primary-700);
  transform: translateY(-2px);
}

/* Top Banner Notification */
.top-notice-bar {
  background: linear-gradient(90deg, var(--dark-900) 0%, var(--primary-700) 100%);
  color: var(--white);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}

.top-notice-bar strong {
  color: var(--primary-400);
}

/* Header & Navbar */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(203, 213, 225, 0.4);
  transition: var(--transition-normal);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 94px;
  max-width: 1380px;
  padding: 0 2rem;
}

header nav {
  flex: 1;
  display: flex;
  justify-content: center;
  margin: 0 2.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 840px;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--dark-700);
  transition: var(--transition-fast);
  position: relative;
  white-space: nowrap;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.foot-logo-icon {
  height: 60px;
  width: 60px;
  object-fit: contain;
  display: block;
  background: transparent;
  transition: var(--transition-fast);
}

.foot-logo-icon:hover {
  transform: scale(1.08);
}

.logo-brand-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--dark-900);
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}

.logo-brand-text span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-600);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 2px;
}

.footer-brand .foot-logo-icon {
  height: 62px;
  width: 62px;
  background: transparent;
  filter: brightness(1.15);
}

.footer-brand .logo-brand-text {
  color: var(--white);
}

.footer-brand .logo-brand-text span {
  color: var(--primary-400);
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-600), var(--secondary-500));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  box-shadow: 0 4px 10px rgba(13, 148, 136, 0.3);
}

.logo-text span {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-600);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark-700);
  transition: var(--transition-fast);
  position: relative;
}

.nav-link:hover {
  color: var(--primary-600);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-600);
  transition: var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

/* HERO SECTION */
.hero {
  padding: 4rem 0 5rem;
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(204, 251, 241, 0.4) 0%, rgba(248, 250, 252, 0) 60%),
              radial-gradient(circle at 10% 80%, rgba(224, 242, 254, 0.4) 0%, rgba(248, 250, 252, 0) 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--dark-900);
  letter-spacing: -0.02em;
}

.hero-title span {
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--secondary-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--gray-600);
  max-width: 600px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-300);
  box-shadow: var(--shadow-sm);
  width: fit-content;
}

.google-stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--accent-gold);
  font-size: 1.1rem;
}

.proof-text {
  font-size: 0.9rem;
  color: var(--dark-800);
  font-weight: 600;
}

.proof-text span {
  display: block;
  font-size: 0.78rem;
  color: var(--gray-500);
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-300);
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.highlight-icon {
  width: 36px;
  height: 36px;
  background: var(--primary-100);
  color: var(--primary-700);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.highlight-info h4 {
  font-size: 0.9rem;
  font-weight: 700;
}

.highlight-info p {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.hero-media {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.hero-image-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.hero-floating-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 280px;
  border: 1px solid var(--primary-100);
  animation: float 4s ease-in-out infinite;
}

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

.floating-avatar {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--primary-500);
}

.floating-info h5 {
  font-size: 0.95rem;
  color: var(--dark-900);
}

.floating-info p {
  font-size: 0.8rem;
  color: var(--primary-600);
  font-weight: 600;
}

/* SECTION TITLES */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-header .badge {
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.35rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
}

/* SYMPTOM CHECKER / QUIZ SECTION (CONVERSION BOOST) */
.symptom-section {
  padding: 5rem 0;
  background: var(--white);
  position: relative;
}

.quiz-card {
  background: linear-gradient(145deg, #ffffff 0%, var(--gray-50) 100%);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.symptom-option {
  background: var(--white);
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  cursor: pointer;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.symptom-option:hover {
  border-color: var(--primary-500);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.symptom-option.selected {
  border-color: var(--primary-600);
  background: var(--primary-50);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

.symptom-icon {
  font-size: 1.8rem;
  width: 48px;
  height: 48px;
  background: var(--primary-100);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.symptom-info h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.symptom-info p {
  font-size: 0.82rem;
  color: var(--gray-500);
}

.quiz-result-box {
  background: var(--primary-700);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.quiz-result-info h3 {
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.quiz-result-info p {
  color: var(--primary-100);
  font-size: 0.95rem;
}

/* GOOGLE REVIEWS SECTION */
.reviews-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--gray-50) 0%, #edf8f6 100%);
}

.google-banner {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-300);
  flex-wrap: wrap;
  gap: 1.5rem;
}

.google-score {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.google-logo {
  height: 38px;
}

.score-num {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--dark-900);
  line-height: 1;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-300);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  transition: var(--transition-normal);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-400);
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.user-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary-600), var(--secondary-500));
  color: var(--white);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.user-name h4 {
  font-size: 0.95rem;
}

.user-name span {
  font-size: 0.78rem;
  color: var(--gray-500);
}

.verified-badge {
  color: var(--primary-600);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
}

.review-stars {
  color: var(--accent-gold);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--dark-700);
  font-style: italic;
  line-height: 1.55;
}

/* SERVICES SECTION */
.services-section {
  padding: 5rem 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-300);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-600);
  opacity: 0;
  transition: var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background: var(--white);
  border-color: var(--primary-400);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-100);
  color: var(--primary-700);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.service-title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-features li {
  font-size: 0.88rem;
  color: var(--dark-800);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-features li i {
  color: var(--primary-600);
}

.service-cta {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-700);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}

.service-cta:hover {
  gap: 0.75rem;
  color: var(--primary-600);
}

/* ABOUT SECTION */
.about-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--dark-900) 0%, var(--dark-800) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4.5rem;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
}

/* Professional photo frame */
.about-photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.6);
}

.about-photo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 3px;
  background: linear-gradient(145deg, var(--primary-500), transparent 60%, rgba(13,148,136,0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 2;
  pointer-events: none;
}

.about-photo {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: var(--radius-lg);
}

.about-photo-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to top, rgba(15,23,42,0.7) 0%, transparent 100%);
  z-index: 1;
}

.about-badge {
  position: absolute;
  bottom: 20px;
  right: -16px;
  background: var(--white);
  backdrop-filter: blur(8px);
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(13, 148, 136, 0.25);
  color: var(--dark-900);
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 10;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-600);
}

.about-badge span {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark-900);
  display: block;
  line-height: 1.1;
  margin-bottom: 2px;
}

.about-content h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

.about-content p {
  color: var(--gray-300);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-feature-icon {
  width: 32px;
  height: 32px;
  background: rgba(20, 184, 166, 0.2);
  color: var(--primary-400);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-info h4 {
  color: var(--white);
  font-size: 0.95rem;
}

.about-feature-info p {
  color: var(--gray-400);
  font-size: 0.82rem;
  margin-bottom: 0;
}

/* LOCATION & CLINIC INFO */
.location-section {
  padding: 5rem 0;
  background: var(--white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.location-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--gray-300);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-100);
  color: var(--primary-700);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.info-text h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.info-text p {
  font-size: 0.92rem;
  color: var(--gray-600);
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-300);
  position: relative;
  min-height: 400px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* FAQ SECTION */
.faq-section {
  padding: 5rem 0;
  background: var(--gray-50);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

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

.faq-question {
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--primary-600);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  padding: 0 1.5rem;
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem 1.5rem;
}

/* CTA BANNER FOOTER */
.cta-banner {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-600) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner-content {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.cta-banner h2 {
  color: var(--white);
  font-size: 2.75rem;
}

.cta-banner p {
  font-size: 1.15rem;
  color: var(--primary-100);
}

/* FOOTER */
.footer {
  background: var(--dark-900);
  color: var(--gray-400);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--dark-800);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand .logo {
  color: var(--white);
}

.footer-title {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary-400);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--dark-800);
  text-align: center;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* FLOATING WHATSAPP BUTTON & MOBILE BOTTOM BAR */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 64px;
  height: 64px;
  background: #25d366;
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
  z-index: 9999;
  transition: var(--transition-normal);
  animation: pulse-green 2s infinite;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1);
  background: #20ba5a;
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  50% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
}

.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  padding: 0.75rem 1rem;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  z-index: 999;
  border-top: 1px solid var(--gray-300);
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .hero-grid, .about-grid, .location-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-badge {
    right: 20px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 2.5rem 0 3.5rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }

  .brand-logo-img {
    height: 62px;
    transform: scale(1.15);
    margin-left: 0;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .google-banner {
    flex-direction: column;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp-btn {
    bottom: 4.5rem;
    right: 1.25rem;
    width: 56px;
    height: 56px;
    font-size: 1.75rem;
  }

  .mobile-bottom-bar {
    display: block;
  }

  .mobile-bottom-bar .btn {
    width: 100%;
  }
}
