/* ==========================================================================
   CLIMUNE - CLÍNICA DE VACINAS E ESPECIALIDADES MÉDICAS
   Design System & Master Stylesheet
   ========================================================================== */

:root {
  /* Brand Color Palette */
  --primary-orange: #FF7417;
  --primary-orange-hover: #E0600C;
  --primary-orange-light: rgba(255, 116, 23, 0.08);
  --primary-orange-glow: rgba(255, 116, 23, 0.25);
  --peach: #F6CDAA;
  --peach-light: rgba(246, 205, 170, 0.35);
  --peach-ultra-light: rgba(246, 205, 170, 0.15);
  
  /* Neutral Palette */
  --dark-gray: #2C2C2C;
  --dark-gray-light: #525252;
  --muted-text: #71717A;
  --light-bg: #FAF8F6;
  --card-bg: #FFFFFF;
  --sand: #E7E3DF;
  --sand-light: #F4F1EE;
  --white: #FFFFFF;
  --whatsapp-green: #25D366;
  --whatsapp-green-hover: #20BA5A;

  /* Glassmorphism & Elevations */
  --glass-bg: rgba(255, 255, 255, 0.88);
  --glass-border: rgba(255, 255, 255, 0.6);
  --shadow-xs: 0 1px 3px rgba(44, 44, 44, 0.04);
  --shadow-sm: 0 4px 6px -1px rgba(44, 44, 44, 0.05), 0 2px 4px -1px rgba(44, 44, 44, 0.03);
  --shadow-md: 0 10px 20px -3px rgba(44, 44, 44, 0.07), 0 4px 6px -2px rgba(44, 44, 44, 0.04);
  --shadow-lg: 0 20px 30px -5px rgba(44, 44, 44, 0.09), 0 10px 15px -5px rgba(44, 44, 44, 0.04);
  --shadow-orange: 0 10px 25px -3px rgba(255, 116, 23, 0.35);

  /* Typography */
  --font-main: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-pill: 9999px;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-main);
  background-color: var(--light-bg);
  color: var(--dark-gray);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

button, input, textarea, select {
  font-family: inherit;
}

::selection {
  background-color: var(--peach);
  color: var(--dark-gray);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--sand);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--peach);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 6rem 0;
}

/* ==========================================================================
   Typography & Badges
   ========================================================================== */

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

h1 {
  font-size: 3.25rem;
  letter-spacing: -1.5px;
}

h2 {
  font-size: 2.25rem;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 1.35rem;
}

p {
  color: var(--dark-gray-light);
}

.highlight-orange {
  color: var(--primary-orange);
  position: relative;
  display: inline-block;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 4rem;
}

.section-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-orange);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

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

.section-intro {
  font-size: 1.1rem;
  color: var(--dark-gray-light);
  line-height: 1.65;
}

/* ==========================================================================
   Buttons & Links
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary-orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(255, 116, 23, 0.35);
}

.btn-primary:hover {
  background-color: var(--primary-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 116, 23, 0.45);
}

.btn-secondary {
  background-color: transparent;
  color: var(--dark-gray);
  border-color: var(--dark-gray);
}

.btn-secondary:hover {
  background-color: var(--dark-gray);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-orange {
  background-color: transparent;
  color: var(--primary-orange);
  border-color: var(--primary-orange);
}

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

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.btn-whatsapp {
  background-color: var(--whatsapp-green);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
}

/* Glass Card */
.card-glass {
  background: var(--card-bg);
  border: 1px solid var(--sand);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
}

.card-glass:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--peach);
}

/* ==========================================================================
   Header & Navbar
   ========================================================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 85px;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(231, 227, 223, 0.6);
  z-index: 1000;
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  height: 75px;
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.95);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.nav-logo:hover .logo-img {
  transform: scale(1.02);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--dark-gray);
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-link:hover, .nav-link.active {
  color: var(--primary-orange);
}

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

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

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--dark-gray);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast);
}

.mobile-menu-btn:hover {
  background-color: var(--sand-light);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 85px;
  left: 0;
  width: 100%;
  height: calc(100vh - 85px);
  background: var(--white);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(-10px);
  opacity: 0;
  transition: all var(--transition-normal);
  overflow-y: auto;
}

.mobile-drawer.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-link {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark-gray);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  display: block;
}

.mobile-link:hover, .mobile-link.active {
  background-color: var(--primary-orange-light);
  color: var(--primary-orange);
}

.mobile-drawer-footer {
  padding-top: 1.5rem;
  border-top: 1px solid var(--sand);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
  padding-top: 170px;
  padding-bottom: 5.5rem;
  background: radial-gradient(circle at 85% 15%, var(--peach-light) 0%, transparent 45%),
              radial-gradient(circle at 10% 85%, rgba(255, 116, 23, 0.05) 0%, transparent 40%);
  position: relative;
  overflow: hidden;
}

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

.badge-care {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background-color: var(--primary-orange-light);
  color: var(--primary-orange);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 116, 23, 0.2);
}

.badge-care svg {
  color: var(--primary-orange);
}

.hero-title {
  font-size: 3.4rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--dark-gray-light);
  margin-bottom: 2.5rem;
  max-width: 580px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.hero-trust-indicators {
  display: flex;
  gap: 2.5rem;
  border-top: 1px solid var(--sand);
  padding-top: 2rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-orange);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.trust-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-gray-light);
}

/* Hero Graphic / Card Visual */
.hero-graphic-area {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-circle-backdrop {
  position: absolute;
  width: 120%;
  height: 120%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--peach) 0%, rgba(246, 205, 170, 0) 70%);
  filter: blur(40px);
  z-index: 1;
  opacity: 0.7;
}

.hero-visual-card {
  width: 100%;
  max-width: 440px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--sand);
  padding: 2rem;
  position: relative;
  z-index: 2;
  transform: rotate(1.5deg);
  transition: transform var(--transition-normal);
}

.hero-visual-card:hover {
  transform: rotate(0deg) scale(1.02);
}

.card-header-visual {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.brand-dots {
  display: flex;
  gap: 0.35rem;
}

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.brand-dot.orange { background-color: var(--primary-orange); }
.brand-dot.peach { background-color: var(--peach); }
.brand-dot.gray { background-color: var(--sand); }

.card-badge-status {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  background-color: rgba(37, 211, 102, 0.12);
  color: #1a8f44;
}

.visual-profile-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--sand-light);
  padding-bottom: 1.25rem;
}

.visual-avatar-group {
  display: flex;
  position: relative;
  width: 90px;
  height: 48px;
}

.visual-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
  position: absolute;
}

.visual-avatar:nth-child(1) { left: 0; z-index: 3; }
.visual-avatar:nth-child(2) { left: 24px; z-index: 2; }
.visual-avatar:nth-child(3) { left: 48px; z-index: 1; }

.visual-card-title {
  font-size: 1.05rem;
  font-weight: 700;
}

.visual-card-sub {
  font-size: 0.82rem;
  color: var(--muted-text);
}

.visual-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.visual-info-box {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--light-bg);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-gray-light);
}

.visual-info-box svg {
  color: var(--primary-orange);
  flex-shrink: 0;
}

.visual-quote {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--dark-gray);
  border-left: 3px solid var(--primary-orange);
  padding-left: 0.85rem;
  line-height: 1.5;
  background: var(--peach-ultra-light);
  padding: 0.75rem 0.85rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.services-section {
  background-color: var(--white);
}

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

.service-card {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-icon-box {
  width: 64px;
  height: 64px;
  background-color: var(--primary-orange-light);
  color: var(--primary-orange);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all var(--transition-normal);
}

.service-card:hover .service-icon-box {
  background-color: var(--primary-orange);
  color: var(--white);
  transform: scale(1.08);
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--dark-gray-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

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

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark-gray-light);
}

.service-feature-item svg {
  color: var(--primary-orange);
  flex-shrink: 0;
}

/* ==========================================================================
   Vaccine Guide Section
   ========================================================================== */

.vaccines-section {
  background-color: var(--light-bg);
}

.vaccine-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-pill);
  background-color: var(--white);
  border: 1px solid var(--sand);
  color: var(--dark-gray-light);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.tab-btn:hover {
  border-color: var(--primary-orange);
  color: var(--primary-orange);
  transform: translateY(-2px);
}

.tab-btn.active {
  background-color: var(--primary-orange);
  border-color: var(--primary-orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(255, 116, 23, 0.35);
}

.tab-content-container {
  max-width: 950px;
  margin: 0 auto;
}

.tab-pane {
  display: none;
  animation: fadeIn 0.4s ease-out forwards;
}

.tab-pane.active {
  display: block;
}

.vaccines-card {
  padding: 3rem;
}

.vaccines-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.vaccine-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--sand);
  gap: 1.5rem;
  transition: all var(--transition-fast);
}

.vaccine-item-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.vaccine-item-row:hover {
  transform: translateX(4px);
}

.vaccine-info {
  flex: 1;
}

.vaccine-header-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.vaccine-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-gray);
}

.vaccine-tag {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  background-color: var(--primary-orange-light);
  color: var(--primary-orange);
  border-radius: var(--radius-pill);
}

.vaccine-desc {
  font-size: 0.9rem;
  color: var(--muted-text);
  line-height: 1.5;
}

.btn-vaccine-link {
  background: transparent;
  border: 1px solid transparent;
  color: var(--primary-orange);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  font-size: 0.88rem;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-pill);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-vaccine-link:hover {
  background-color: var(--primary-orange-light);
  border-color: rgba(255, 116, 23, 0.2);
}

.tab-footer-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, var(--peach-ultra-light) 0%, rgba(255, 255, 255, 0.9) 100%);
  border: 1px solid var(--peach);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.tab-footer-text h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

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

/* ==========================================================================
   Clinical Staff (Doctors) Section
   ========================================================================== */

.doctors-section {
  background-color: var(--white);
}

.doctors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2.5rem;
}

.doctor-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--sand-light);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

.doctor-image-wrapper {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
  background: radial-gradient(circle, var(--peach-light) 0%, var(--sand-light) 100%);
}

.doctor-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--transition-slow);
}

.doctor-card:hover .doctor-image {
  transform: scale(1.06);
}

.doctor-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 44, 44, 0.45);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
  padding: 1.5rem;
}

.doctor-card:hover .doctor-overlay {
  opacity: 1;
}

.doctor-info {
  padding: 1.75rem 1.5rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.doctor-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--dark-gray);
}

.doctor-specialty {
  color: var(--primary-orange);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.doctor-crm {
  color: var(--muted-text);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  margin-bottom: 1.25rem;
}

.doctor-action-btn {
  margin-top: auto;
}

/* ==========================================================================
   About Section (O Cuidador)
   ========================================================================== */

.about-section {
  background-color: var(--light-bg);
}

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

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-badge-container {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--sand);
  z-index: 2;
  position: relative;
  padding: 2rem;
  animation: float 6s ease-in-out infinite;
}

.about-logo-badge {
  width: 80%;
  height: auto;
  object-fit: contain;
}

.about-floating-card {
  position: absolute;
  bottom: -15px;
  right: -15px;
  background-color: var(--white);
  border: 1px solid var(--peach);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 3;
  max-width: 260px;
}

.floating-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-orange);
  line-height: 1;
}

.floating-text {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--dark-gray-light);
  line-height: 1.35;
}

.about-desc {
  font-size: 1.05rem;
  color: var(--dark-gray-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about-bullets {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.bullet-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--primary-orange-light);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bullet-item span {
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--dark-gray);
}

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

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

.testimonials-section {
  background-color: var(--white);
}

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

.testimonial-card {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars-rating {
  display: flex;
  gap: 0.25rem;
  color: #FFB800;
  margin-bottom: 1.25rem;
}

.testimonial-quote {
  font-size: 0.98rem;
  color: var(--dark-gray-light);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--sand-light);
  padding-top: 1rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--peach-light);
  color: var(--primary-orange);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.author-info h4 {
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.author-info span {
  font-size: 0.8rem;
  color: var(--muted-text);
}

/* ==========================================================================
   FAQ Section (Accordion)
   ========================================================================== */

.faq-section {
  background-color: var(--light-bg);
}

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

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

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

.faq-question {
  width: 100%;
  padding: 1.5rem 1.75rem;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-gray);
  cursor: pointer;
  gap: 1rem;
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: var(--primary-orange);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1), padding 0.35s ease;
  padding: 0 1.75rem;
  color: var(--dark-gray-light);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  transition: max-height 0.4s cubic-bezier(1, 0, 1, 0), padding 0.35s ease;
  padding: 0 1.75rem 1.5rem;
}

/* ==========================================================================
   Contact & Location Section
   ========================================================================== */

.contact-section {
  background-color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
}

.contact-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--primary-orange-light);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-item p {
  font-size: 0.95rem;
  color: var(--muted-text);
  line-height: 1.45;
}

.contact-link {
  font-weight: 600;
  color: var(--dark-gray);
  display: inline-block;
  margin-top: 0.2rem;
}

.contact-link:hover {
  color: var(--primary-orange);
}

.map-wrapper {
  width: 100%;
  height: 460px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--sand);
  box-shadow: var(--shadow-sm);
}

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

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 1.5rem;
  object-fit: contain;
}

.footer-tagline {
  color: var(--sand);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
  max-width: 280px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-link:hover {
  background-color: var(--primary-orange);
  transform: translateY(-3px);
}

.footer-links-group h4, .footer-newsletter h4 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-links-group ul {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links-group a, .privacy-btn {
  color: var(--sand);
  font-size: 0.92rem;
  font-weight: 500;
}

.privacy-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  text-align: left;
}

.footer-links-group a:hover, .privacy-btn:hover {
  color: var(--primary-orange);
}

.footer-newsletter p {
  color: var(--sand);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.88rem;
  color: var(--sand);
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */

.whatsapp-floating {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 62px;
  height: 62px;
  background-color: var(--whatsapp-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 990;
  transition: all var(--transition-normal);
  animation: pulseGreen 2.5s infinite;
}

.whatsapp-floating:hover {
  transform: scale(1.12) translateY(-3px);
  background-color: var(--whatsapp-green-hover);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-floating svg {
  width: 32px;
  height: 32px;
}

@keyframes pulseGreen {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ==========================================================================
   Modal (Privacy Policy)
   ========================================================================== */

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 44, 44, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1100;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  width: 100%;
  max-width: 620px;
  background-color: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--sand);
  padding: 2.5rem;
  transform: scale(0.95);
  transition: transform var(--transition-normal);
}

.modal-backdrop.open .modal-content {
  transform: scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--sand-light);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.close-modal-btn {
  background: transparent;
  border: none;
  color: var(--muted-text);
  cursor: pointer;
  padding: 0.35rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.close-modal-btn:hover {
  background-color: var(--sand-light);
  color: var(--dark-gray);
}

.modal-body {
  max-height: 360px;
  overflow-y: auto;
  padding-right: 0.75rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-text {
  font-size: 0.95rem;
  color: var(--dark-gray-light);
  line-height: 1.65;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid var(--sand-light);
  padding-top: 1.25rem;
}

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

@media (max-width: 1024px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-graphic-area { margin-top: 1rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { order: -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .mobile-menu-btn { display: block; }
  .section-padding { padding: 4.5rem 0; }
  .hero-section { padding-top: 130px; }
  .hero-title { font-size: 2.35rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-trust-indicators { gap: 1.5rem; }
  .tab-content-container .vaccines-card { padding: 1.75rem; }
  .vaccine-item-row { flex-direction: column; align-items: flex-start; gap: 0.85rem; }
  .btn-vaccine-link { padding-left: 0; }
  .tab-footer-banner { flex-direction: column; text-align: center; }
  .tab-footer-banner .btn { width: 100%; }
  .map-wrapper { height: 350px; }
}

@media (max-width: 576px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.65rem; }
  .container { padding: 0 1.25rem; }
  .hero-trust-indicators { flex-direction: column; gap: 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-content { flex-direction: column; text-align: center; }
  .whatsapp-floating { width: 52px; height: 52px; bottom: 20px; right: 20px; }
  .whatsapp-floating svg { width: 26px; height: 26px; }
}
