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

:root {
  --primary: #0d9488;
  --primary-dark: #0b7d73;
  --primary-light: #e0f7f5;
  --background: #f0fdfa;
  --background-gradient: linear-gradient(to bottom right, #f0fdfa, #e6faf7, #d4f5f0);
  --foreground: #134e4a;
  --muted: #5b7d7a;
  --border: #d1e9e6;
  --white: #ffffff;
  --whatsapp: #25d366;
  --warning-bg: #fef3c7;
  --warning-border: #f59e0b;
  --warning-text: #92400e;
  --danger-bg: #fef2f2;
  --danger-border: #fecaca;
  --danger-text: #dc2626;
  --footer-bg: #134e4a;
  --footer-text: #94a3b8;
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
}

.text-primary { color: var(--primary); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

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

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
}

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
}

.btn-whatsapp:hover {
  background-color: #20bd5a;
  border-color: #20bd5a;
}

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

.w-full { width: 100%; }

.mt-3 { margin-top: 0.75rem; }

.icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.icon-sm {
  width: 0.75rem;
  height: 0.75rem;
}

.hidden { display: none !important; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

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

.logo-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
}

.logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--foreground);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.header-cta {
  display: none;
}

.mobile-menu-btn {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.mobile-menu-btn .icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--foreground);
}

.nav-mobile {
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-mobile .nav-link {
  padding: 0.5rem 0;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  
  .header-cta {
    display: inline-flex;
  }
  
  .mobile-menu-btn {
    display: none;
  }
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--background-gradient);
  padding: 3rem 0;
}

.hero-decoration-1 {
  position: absolute;
  top: 5rem;
  right: 25%;
  width: 16rem;
  height: 16rem;
  background-color: rgba(13, 148, 136, 0.05);
  border-radius: 50%;
  filter: blur(48px);
}

.hero-decoration-2 {
  position: absolute;
  bottom: 2.5rem;
  left: 25%;
  width: 12rem;
  height: 12rem;
  background-color: rgba(13, 148, 136, 0.1);
  border-radius: 50%;
  filter: blur(32px);
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  border: 1px solid rgba(13, 148, 136, 0.2);
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--primary);
  border-radius: 50%;
}

.hero-title {
  font-size: 2.5rem;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 36rem;
  margin-bottom: 1.5rem;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.hero-feature-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-feature-icon svg {
  width: 1rem;
  height: 1rem;
  stroke: var(--primary);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.avatar-group {
  display: flex;
}

.avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  border: 2px solid var(--white);
  margin-left: -0.5rem;
}

.avatar:first-child {
  margin-left: 0;
}

.social-proof-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}

.social-proof-subtitle {
  font-size: 0.75rem;
  color: var(--muted);
}

/* Chat Mockup */
.hero-chat-wrapper {
  position: relative;
}

.chat-decoration-1 {
  position: absolute;
  top: -2.5rem;
  right: -2.5rem;
  width: 8rem;
  height: 8rem;
  background-color: rgba(13, 148, 136, 0.2);
  border-radius: 50%;
  filter: blur(32px);
}

.chat-decoration-2 {
  position: absolute;
  bottom: -2.5rem;
  left: -2.5rem;
  width: 10rem;
  height: 10rem;
  background-color: rgba(13, 148, 136, 0.1);
  border-radius: 50%;
  filter: blur(32px);
}

.chat-mockup {
  position: relative;
  background-color: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  max-width: 24rem;
  margin: 0 auto;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.chat-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-avatar svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: var(--white);
}

.chat-title {
  font-weight: 600;
  color: var(--foreground);
  font-size: 0.875rem;
}

.chat-status {
  font-size: 0.75rem;
  color: var(--primary);
}

.chat-messages {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.message {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.message-sent {
  justify-content: flex-end;
}

.message-avatar {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.625rem;
  font-weight: 700;
  flex-shrink: 0;
}

.message-bubble {
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  max-width: 16rem;
}

.message-received .message-bubble {
  background-color: #f5f5f5;
  color: var(--foreground);
  border-top-left-radius: 0.25rem;
}

.message-sent .message-bubble {
  background-color: var(--primary);
  color: var(--white);
  border-top-right-radius: 0.25rem;
}

.chat-input {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.chat-input-field {
  flex: 1;
  background-color: #f5f5f5;
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: #9ca3af;
}

.chat-send-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--primary);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.chat-send-btn svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: var(--white);
}

@media (min-width: 1024px) {
  .hero {
    padding: 5rem 0;
  }
  
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
}

/* Sections */
.section {
  padding: 4rem 0;
}

.bg-light { background-color: var(--background); }
.bg-white { background-color: var(--white); }
.bg-gradient { background: var(--background-gradient); }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-block;
  background-color: var(--white);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(13, 148, 136, 0.2);
  margin-bottom: 1rem;
}

.section-badge-filled {
  display: inline-block;
  background-color: var(--primary);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2rem;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.section-title-left {
  font-size: 2rem;
  color: var(--foreground);
  margin-bottom: 1rem;
  text-align: left;
}

.section-description {
  color: var(--muted);
  max-width: 42rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .section {
    padding: 6rem 0;
  }
  
  .section-title, .section-title-left {
    font-size: 2.5rem;
  }
}

/* Steps Grid */
.steps-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.step-card {
  position: relative;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  transition: box-shadow 0.2s ease;
}

.step-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.step-number {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
}

.step-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.step-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: var(--white);
}

.step-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.step-description {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Stats Grid */
.stats-grid {
  display: grid;
  gap: 1.5rem;
}

.stat-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted);
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .stat-value {
    font-size: 2.5rem;
  }
}

/* Telemedicine */
.telemedicine-grid {
  display: grid;
  gap: 2rem;
}

.telemedicine-features {
  display: grid;
  gap: 1.5rem;
}

.feature-card {
  background-color: var(--background);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: var(--white);
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.feature-description {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

.how-to-access {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.access-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.access-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.access-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.access-step-number {
  width: 2rem;
  height: 2rem;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}

.access-step-text {
  font-size: 0.875rem;
  color: var(--muted);
  padding-top: 0.25rem;
}

.warning-box {
  margin-top: 2rem;
  background-color: var(--danger-bg);
  border: 1px solid var(--danger-border);
  border-radius: var(--radius-lg);
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.warning-icon {
  width: 1.25rem;
  height: 1.25rem;
  stroke: var(--danger-text);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.warning-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #b91c1c;
}

.warning-text {
  font-size: 0.875rem;
  color: var(--danger-text);
}

@media (min-width: 640px) {
  .telemedicine-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .telemedicine-grid {
    grid-template-columns: 2fr 1fr;
  }
}

/* Transparency */
.transparency-grid {
  display: grid;
  gap: 3rem;
  align-items: flex-start;
}

.transparency-content {
  text-align: left;
}

.transparency-description {
  color: var(--muted);
  margin-bottom: 2rem;
}

.transparency-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.transparency-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.transparency-feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.transparency-feature-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: var(--primary);
}

.transparency-feature-title {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.transparency-feature-description {
  font-size: 0.875rem;
  color: var(--muted);
}

.info-box {
  margin-top: 2rem;
  background-color: var(--warning-bg);
  border-left: 4px solid var(--warning-border);
  padding: 1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.info-icon {
  width: 1.25rem;
  height: 1.25rem;
  stroke: var(--warning-border);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.info-text {
  font-size: 0.875rem;
  color: var(--warning-text);
}

.pricing-process {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
}

.pricing-process-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-steps {
  display: flex;
  flex-direction: column;
}

.pricing-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 2rem;
}

.pricing-step.last {
  padding-bottom: 0;
}

.pricing-step-number {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.pricing-step-line {
  position: absolute;
  left: 1.25rem;
  top: 2.5rem;
  width: 2px;
  height: 2rem;
  background-color: var(--border);
  transform: translateX(-50%);
}

.pricing-step.last .pricing-step-line {
  display: none;
}

.pricing-step-content {
  padding-top: 0.25rem;
}

.pricing-step-title {
  font-weight: 600;
  color: var(--foreground);
}

.pricing-step-description {
  font-size: 0.875rem;
  color: var(--muted);
}

.pricing-footer {
  font-size: 0.875rem;
  color: var(--primary);
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-top: 1rem;
}

@media (min-width: 1024px) {
  .transparency-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Pricing */
.pricing-grid {
  display: grid;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

.plan-card {
  position: relative;
  background-color: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.plan-popular {
  border-color: var(--primary);
  box-shadow: 0 10px 25px -5px rgba(13, 148, 136, 0.2);
}

.popular-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.plan-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--background);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.plan-icon.popular {
  background-color: var(--primary);
}

.plan-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: var(--primary);
}

.plan-icon.popular svg {
  stroke: var(--white);
}

.plan-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.plan-description {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.price-currency {
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
}

.price-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
}

.price-period {
  font-size: 0.875rem;
  color: var(--muted);
}

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

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.check-icon {
  width: 1.25rem;
  height: 1.25rem;
  stroke: var(--primary);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* FAQ */
.faq-container {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item.open {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-q {
  width: 2rem;
  height: 2rem;
  background-color: var(--background);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-question span {
  flex: 1;
  font-weight: 500;
  color: var(--foreground);
}

.faq-chevron {
  width: 1.25rem;
  height: 1.25rem;
  stroke: var(--muted);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1rem 4.25rem;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

.faq-cta {
  text-align: center;
  margin-top: 3rem;
}

.faq-cta p {
  color: var(--muted);
  margin-bottom: 1rem;
}

/* Footer */
.footer {
  background-color: var(--footer-bg);
  color: var(--white);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding: 3rem 0;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

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

.footer-description {
  color: var(--footer-text);
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 28rem;
  margin-bottom: 1.5rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--footer-text);
}

.contact-item .icon {
  stroke: var(--footer-text);
}

.footer-nav h4,
.footer-legal h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-nav ul,
.footer-legal ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a,
.footer-legal a {
  color: var(--footer-text);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.footer-nav a:hover,
.footer-legal a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid #1e5c58;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--footer-text);
}

.footer-warning {
  color: #f87171 !important;
  font-size: 0.75rem !important;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
  
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 100;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: var(--white);
}

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

@media (min-width: 768px) {
  .whatsapp-float {
    width: 4rem;
    height: 4rem;
  }
  
  .whatsapp-float svg {
    width: 2rem;
    height: 2rem;
  }
}
