/* ========================================
   WhatsJA - Design System
   ======================================== */

/* CSS Variables */
:root {
  /* Colors */
  --whatsja-blue: hsl(228, 77%, 56%);
  --whatsja-blue-dark: hsl(228, 77%, 46%);
  --whatsja-green: hsl(120, 100%, 45%);
  --green-600: #16a34a;
  --green-700: #15803d;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --blue-100: rgba(219, 234, 254, 0.8);
  --blue-200: #bfdbfe;
  --blue-400: #60a5fa;
  --blue-800: #1e40af;
  --blue-900: #1e3a8a;
  --orange-100: #ffedd5;
  --orange-200: #fed7aa;
  --orange-500: #f97316;
  --orange-700: #c2410c;
  --orange-800: #9a3412;
  --purple-100: #f3e8ff;
  --purple-600: #9333ea;
  --red-500: #ef4444;
  --yellow-500: #eab308;

  /* Spacing */
  --radius: 0.5rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul,
ol {
  list-style: none;
}

/* Utility Classes */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center {
  text-align: center;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.hidden {
  display: none;
}

/* WhatsJA Gradient */
.whatsja-gradient {
  background: linear-gradient(135deg, var(--whatsja-blue) 0%, var(--whatsja-blue-dark) 100%);
}

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

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

.btn-black {
  background-color: #000;
  color: #fff;
}

.btn-black:hover {
  background-color: var(--gray-800);
}

.btn-green {
  background-color: var(--green-600);
  color: #fff;
}

.btn-green:hover {
  background-color: var(--green-700);
}

.btn-blue {
  background-color: var(--whatsja-blue);
  color: #fff;
}

.btn-blue:hover {
  background-color: var(--whatsja-blue-dark);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--whatsja-blue);
  color: var(--whatsja-blue);
}

.btn-outline:hover {
  background-color: var(--whatsja-blue);
  color: #fff;
}

.btn-white {
  background-color: #fff;
  color: var(--whatsja-blue);
}

.btn-white:hover {
  background-color: var(--gray-50);
}

/* ========================================
   Header
   ======================================== */
.header {
  padding: 1rem 1.5rem;
}

.header-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  height: 2.5rem;
  width: auto;
  cursor: pointer;
}

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

.header-nav a,
.header-nav button {
  color: #fff;
  font-size: 1rem;
  transition: color 0.2s;
}

.header-nav a:hover,
.header-nav button:hover {
  color: var(--blue-200);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--green-600);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  transition: background-color 0.2s;
}

.whatsapp-btn:hover {
  background-color: var(--green-700);
}

.client-btn {
  display: none;
  background-color: #fff;
  color: var(--whatsja-blue);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background-color 0.2s;
}

.client-btn:hover {
  background-color: var(--gray-50);
}

.mobile-menu-btn {
  display: block;
  color: #fff;
  padding: 0.5rem;
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

.mobile-menu {
  display: none;
  background-color: var(--blue-900);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
}

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

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-menu a,
.mobile-menu button {
  display: block;
  width: 100%;
  text-align: left;
  color: #fff;
  padding: 0.5rem 0;
  font-size: 1rem;
  transition: color 0.2s;
}

.mobile-menu a:hover,
.mobile-menu button:hover {
  color: var(--blue-200);
}

@media (min-width: 768px) {
  .header-logo img {
    height: 3.5rem;
  }

  .header-nav {
    display: flex;
  }

  .client-btn {
    display: block;
  }

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

  .whatsapp-btn span {
    display: inline;
  }
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4rem 1rem;
  color: #fff;
}

.hero-content {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.125rem;
  color: var(--blue-100);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-2xl);
}

@media (min-width: 768px) {
  .hero {
    padding: 8rem 1.5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .hero-text h1 {
    font-size: 3rem;
  }

  .hero-text p {
    font-size: 1.5rem;
  }

  .hero-buttons {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-text h1 {
    font-size: 3.75rem;
  }
}

/* ========================================
   Features Section
   ======================================== */
.features {
  padding: 3rem 1rem;
  background-color: var(--gray-50);
}

.features-content {
  max-width: 1280px;
  margin: 0 auto;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.feature-card {
  background-color: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
}

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

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #fff;
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

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

@media (min-width: 768px) {
  .features {
    padding: 4rem 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

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

/* ========================================
   Chatbot Section
   ======================================== */
.chatbot-section {
  padding: 3rem 1rem;
  background-color: var(--gray-50);
}

.chatbot-content {
  max-width: 1280px;
  margin: 0 auto;
}

.chatbot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

.chatbot-image {
  position: relative;
}

.chatbot-image-wrapper {
  background-color: #fff;
  border-radius: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
}

.chatbot-image img {
  width: 100%;
  border-radius: 0.5rem;
}

.visual-badge {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  background-color: var(--whatsja-blue);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.check-badge {
  position: absolute;
  bottom: -0.5rem;
  left: -0.5rem;
  background-color: #22c55e;
  color: #fff;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.chatbot-text h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.chatbot-text h2 span {
  color: var(--whatsja-blue);
}

.chatbot-text>p {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

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

.chatbot-feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(79, 70, 229, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chatbot-feature-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--whatsja-blue);
}

.chatbot-feature h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.chatbot-feature p {
  font-size: 0.75rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.chatbot-benefits {
  background-color: #fff;
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  margin-bottom: 1.5rem;
}

.chatbot-benefits-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.chatbot-benefits-header svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--whatsja-blue);
}

.chatbot-benefits-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
}

.chatbot-benefits ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.chatbot-benefits li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.chatbot-benefits li::before {
  content: '';
  width: 0.375rem;
  height: 0.375rem;
  background-color: var(--whatsja-blue);
  border-radius: 9999px;
}

.chatbot-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

@media (min-width: 768px) {
  .chatbot-section {
    padding: 4rem 1.5rem;
  }

  .chatbot-buttons {
    flex-direction: row;
  }
}

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

  .chatbot-text h2 {
    font-size: 2.25rem;
  }
}

/* ========================================
   Agente IA Section
   ======================================== */
.agente-ia {
  padding: 3rem 1rem;
  background-color: var(--gray-50);
}

.agente-content {
  max-width: 1280px;
  margin: 0 auto;
}

.agente-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

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

.agente-header svg {
  width: 2rem;
  height: 2rem;
  color: var(--whatsja-blue);
}

.agente-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
}

.agente-text>p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.agente-text>p strong {
  color: var(--whatsja-blue);
}

.agente-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.agente-feature {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: box-shadow 0.2s;
}

.agente-feature:hover {
  box-shadow: var(--shadow-md);
}

.agente-feature-icon {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.agente-feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.agente-feature h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.agente-feature p {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.agente-cta {
  margin-top: 1.5rem;
}

.agente-image {
  position: relative;
  margin-top: 2rem;
}

.agente-image-wrapper {
  background-color: #fff;
  border-radius: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
}

.agente-image img {
  width: 100%;
  border-radius: 0.5rem;
}

.ia-badge {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  background-color: var(--whatsja-blue);
  color: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.agente-why {
  margin-top: 2rem;
}

.agente-why-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.agente-why-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.agente-why-header p {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 48rem;
  margin: 0 auto;
}

.agente-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.agente-why-card {
  text-align: center;
  padding: 1rem 1.5rem;
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.agente-why-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

.agente-why-icon.blue {
  background-color: #dbeafe;
}

.agente-why-icon.green {
  background-color: #dcfce7;
}

.agente-why-icon.purple {
  background-color: var(--purple-100);
}

.agente-why-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.agente-why-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.agente-why-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
}

@media (min-width: 768px) {
  .agente-ia {
    padding: 4rem 1.5rem;
  }

  .agente-header h2 {
    font-size: 2rem;
  }

  .agente-why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .agente-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .agente-image {
    margin-top: 0;
  }
}

/* ========================================
   Pricing Section
   ======================================== */
.pricing {
  padding: 3rem 1rem;
  background-color: #fff;
}

.pricing-content {
  max-width: 1280px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.pricing-header p {
  font-size: 1.125rem;
  color: var(--gray-600);
}

.pricing-badges {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 1.5rem;
  gap: 1rem;
}

.pricing-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-600);
}

.pricing-badge svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--green-600);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 2px solid var(--gray-200);
  background-color: #fff;
  transition: all 0.3s;
}

.pricing-card:hover {
  border-color: var(--whatsja-blue);
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}

.pricing-card.highlighted {
  border-color: var(--whatsja-blue);
  background: linear-gradient(135deg, var(--whatsja-blue) 0%, var(--whatsja-blue-dark) 100%);
  color: #fff;
  box-shadow: var(--shadow-2xl);
}

.pricing-badge-recommended {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #22c55e;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-card-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-card-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.highlighted .pricing-card-header h3 {
  color: #fff;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.pricing-price-value {
  font-size: 2.25rem;
  font-weight: 700;
}

.highlighted .pricing-price-value {
  color: #fff;
}

.pricing-price-period {
  font-size: 1.125rem;
  margin-left: 0.25rem;
  color: var(--gray-500);
}

.highlighted .pricing-price-period {
  color: var(--blue-100);
}

.pricing-description {
  font-size: 0.875rem;
  margin-top: 0.75rem;
  color: var(--gray-600);
}

.highlighted .pricing-description {
  color: var(--blue-100);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.pricing-feature {
  display: flex;
  align-items: center;
}

.pricing-feature svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.75rem;
  flex-shrink: 0;
  color: #22c55e;
}

.highlighted .pricing-feature svg {
  color: #fff;
}

.pricing-feature span {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.highlighted .pricing-feature span {
  color: var(--blue-100);
}

.pricing-cta {
  display: block;
}

.pricing-cta .btn {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
}

@media (min-width: 640px) {
  .pricing-badges {
    flex-direction: row;
    gap: 2rem;
  }
}

@media (min-width: 768px) {
  .pricing {
    padding: 4rem 1.5rem;
  }

  .pricing-header h2 {
    font-size: 2rem;
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========================================
   FAQ Section
   ======================================== */
.faq {
  padding: 5rem 1.5rem;
  background-color: var(--gray-50);
}

.faq-content {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-header {
  margin-bottom: 3rem;
}

.faq-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gray-900);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: #fff;
  border-radius: 0.5rem;
  border: 1px solid var(--gray-200);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--whatsja-blue);
}

.faq-question svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 1rem;
}

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

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem;
  color: var(--gray-600);
  line-height: 1.7;
}

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

/* ========================================
   Footer
   ======================================== */
.footer {
  color: #fff;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1rem 0;
}

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

.footer-brand p {
  color: var(--blue-100);
  font-size: 0.875rem;
  margin: 1rem 0;
}

.footer-brand img {
  height: 3.5rem;
  width: auto;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  color: var(--blue-100);
  transition: color 0.2s;
}

.footer-social a:hover {
  color: #fff;
}

.footer-social svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-section h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.footer-section a,
.footer-section button {
  color: var(--blue-100);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-section a:hover,
.footer-section button:hover {
  color: #fff;
}

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

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-contact-item svg {
  width: 1rem;
  height: 1rem;
  color: var(--blue-100);
}

.footer-contact-item span {
  color: var(--blue-100);
  font-size: 0.875rem;
}

.footer-contact-item a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: color 0.2s;
}

.footer-contact-item.whatsapp a {
  color: #4ade80;
}

.footer-contact-item.whatsapp a:hover {
  color: #86efac;
}

.footer-contact-item.schedule a {
  color: #93c5fd;
}

.footer-contact-item.schedule a:hover {
  color: #bfdbfe;
}

.footer-bottom {
  border-top: 1px solid rgba(96, 165, 250, 0.3);
  padding: 2rem 0;
}

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

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

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--blue-100);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

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

@media (min-width: 768px) {
  .footer-content {
    padding: 3rem 1.5rem 0;
  }

  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

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

/* ========================================
   Legal Pages (Termos, Privacidade, Cookies)
   ======================================== */
.legal-page {
  min-height: 100vh;
  background-color: var(--gray-50);
}

.legal-content {
  max-width: 56rem;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.legal-card {
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-sm);
  padding: 2rem;
}

.legal-card h1 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 2rem;
}

.legal-section {
  margin-bottom: 2rem;
}

.legal-section h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.legal-section h3 {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.legal-section p {
  color: var(--gray-700);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.legal-section ul {
  margin-bottom: 1rem;
}

.legal-section li {
  color: var(--gray-700);
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.legal-section li::before {
  content: '•';
  position: absolute;
  left: 0;
}

/* ========================================
   Tutorials Page
   ======================================== */
.tutorials-page {
  min-height: 100vh;
  background-color: var(--gray-50);
}

.tutorials-content {
  max-width: 56rem;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

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

.tutorials-header-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.tutorials-header-icon svg {
  width: 4rem;
  height: 4rem;
  color: var(--orange-500);
}

.tutorials-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.tutorials-header p {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.tutorials-alert {
  background-color: var(--orange-100);
  border: 1px solid var(--orange-200);
  border-radius: 0.5rem;
  padding: 1.5rem;
  max-width: 32rem;
  margin: 0 auto;
}

.tutorials-alert h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--orange-800);
  margin-bottom: 1rem;
}

.tutorials-alert p {
  color: var(--orange-700);
  margin-bottom: 1rem;
}

.tutorials-alert-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.tutorials-alert-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--orange-700);
  font-size: 0.875rem;
}

.tutorials-alert-feature svg {
  width: 1.25rem;
  height: 1.25rem;
}

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

.tutorial-card {
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-md);
  padding: 1.5rem;
  border: 2px dashed var(--gray-200);
  text-align: center;
}

.tutorial-card svg {
  width: 3rem;
  height: 3rem;
  color: var(--gray-400);
  margin: 0 auto 1rem;
}

.tutorial-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.tutorial-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.tutorials-cta {
  text-align: center;
}

.tutorials-cta p {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .tutorials-alert-features {
    grid-template-columns: repeat(3, 1fr);
  }

  .tutorials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ========================================
   API Documentation Page
   ======================================== */
.api-page {
  min-height: 100vh;
  background-color: var(--gray-50);
}

.api-content {
  max-width: 56rem;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

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

.api-header-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.api-header-icon svg {
  width: 4rem;
  height: 4rem;
  color: var(--whatsja-blue);
}

.api-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.api-header p {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.api-alert {
  background-color: #dbeafe;
  border: 1px solid var(--blue-200);
  border-radius: 0.5rem;
  padding: 1.5rem;
  max-width: 32rem;
  margin: 0 auto;
}

.api-alert h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--blue-800);
  margin-bottom: 1rem;
}

.api-alert p {
  color: #1e40af;
  margin-bottom: 1rem;
}

.api-alert-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.api-alert-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #1e40af;
  font-size: 0.875rem;
}

.api-alert-feature svg {
  width: 1.25rem;
  height: 1.25rem;
}

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

.api-card {
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-md);
  padding: 1.5rem;
  border: 2px dashed var(--gray-200);
  text-align: center;
}

.api-card svg {
  width: 3rem;
  height: 3rem;
  color: var(--gray-400);
  margin: 0 auto 1rem;
}

.api-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.api-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.api-code {
  background-color: var(--gray-100);
  border-radius: 0.375rem;
  padding: 0.75rem;
  text-align: left;
}

.api-code code {
  font-size: 0.75rem;
  color: var(--gray-600);
  font-family: 'Courier New', monospace;
}

.api-coming-soon {
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-md);
  padding: 2rem;
  margin-bottom: 3rem;
}

.api-coming-soon h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  text-align: center;
  margin-bottom: 1.5rem;
}

.api-coming-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.api-coming-card {
  text-align: center;
}

.api-coming-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.api-coming-icon.green {
  background-color: #dcfce7;
}

.api-coming-icon.blue {
  background-color: #dbeafe;
}

.api-coming-icon.purple {
  background-color: var(--purple-100);
}

.api-coming-icon svg {
  width: 2rem;
  height: 2rem;
}

.api-coming-card h4 {
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.api-coming-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.api-cta {
  text-align: center;
}

.api-cta p {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

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

  .api-coming-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========================================
   Status Page
   ======================================== */
.status-page {
  min-height: 100vh;
  background-color: var(--gray-50);
}

.status-content {
  max-width: 72rem;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

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

.status-header-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.status-header-icon svg {
  width: 4rem;
  height: 4rem;
  color: #22c55e;
}

.status-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.status-header p {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.status-all-ok {
  background-color: #dcfce7;
  border: 1px solid #bbf7d0;
  border-radius: 0.5rem;
  padding: 1.5rem;
  max-width: 32rem;
  margin: 0 auto 2rem;
}

.status-all-ok-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.status-all-ok-header svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--green-600);
}

.status-all-ok-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #166534;
}

.status-all-ok p {
  color: #15803d;
}

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

.status-card {
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-md);
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
}

.status-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.status-card-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.status-card-info>svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gray-600);
}

.status-card-info h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
}

.status-card-info p {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.status-badge.operational {
  background-color: #dcfce7;
  color: var(--green-600);
}

.status-badge.degraded {
  background-color: #fef9c3;
  color: #ca8a04;
}

.status-badge.outage {
  background-color: #fee2e2;
  color: #dc2626;
}

.status-badge svg {
  width: 1.25rem;
  height: 1.25rem;
}

.status-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.status-metric {
  background-color: var(--gray-50);
  border-radius: 0.5rem;
  padding: 0.75rem;
}

.status-metric-label {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 0.25rem;
}

.status-metric-value {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
}

.status-incident {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.status-incident strong {
  font-weight: 600;
}

.status-history {
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-md);
  padding: 2rem;
  margin-bottom: 2rem;
}

.status-history h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.status-no-incidents {
  text-align: center;
  padding: 2rem;
}

.status-no-incidents svg {
  width: 4rem;
  height: 4rem;
  color: #22c55e;
  margin: 0 auto 1rem;
}

.status-no-incidents h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.status-no-incidents p {
  color: var(--gray-600);
}

.status-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.status-info-card {
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-md);
  padding: 1.5rem;
  text-align: center;
}

.status-info-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.status-info-icon.blue {
  background-color: #dbeafe;
}

.status-info-icon.green {
  background-color: #dcfce7;
}

.status-info-icon.purple {
  background-color: var(--purple-100);
}

.status-info-icon svg {
  width: 2rem;
  height: 2rem;
}

.status-info-card h4 {
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.status-info-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.status-support {
  text-align: center;
  margin-top: 3rem;
}

.status-support-box {
  background-color: var(--gray-100);
  border-radius: 0.5rem;
  padding: 2rem;
  max-width: 32rem;
  margin: 0 auto;
}

.status-support h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.status-support p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

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

  .status-info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========================================
   404 Page
   ======================================== */
.not-found {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gray-50);
  padding: 2rem;
}

.not-found-content {
  text-align: center;
}

.not-found-404 {
  font-size: 6rem;
  font-weight: 700;
  color: var(--gray-200);
  line-height: 1;
}

.not-found h1 {
  font-size: 1.5rem;
  color: var(--gray-900);
  margin: 1rem 0;
}

.not-found p {
  color: var(--gray-600);
  margin-bottom: 2rem;
}

/* ========================================
   Section Headers & Badges
   ======================================== */
.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3rem;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(55, 48, 163, 0.1) 100%);
  color: var(--whatsja-blue);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-top: 0.5rem;
}

/* ========================================
   Hero Stats
   ======================================== */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-stat strong {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
}

.hero-stat span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 768px) {
  .hero-stat strong {
    font-size: 2.25rem;
  }
}

/* ========================================
   Trusted By Section
   ======================================== */
.trusted-by {
  background-color: #fff;
  padding: 2rem 1rem;
  border-bottom: 1px solid var(--gray-200);
}

.trusted-content {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.trusted-content>p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

.trusted-content>p strong {
  color: var(--gray-700);
}

.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.trusted-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--gray-50);
  border-radius: 9999px;
  font-size: 0.875rem;
  color: var(--gray-600);
  transition: all 0.2s;
}

.trusted-logo:hover {
  background-color: var(--gray-100);
  color: var(--gray-900);
}

@media (min-width: 768px) {
  .trusted-by {
    padding: 3rem 1.5rem;
  }

  .trusted-logos {
    gap: 1.5rem;
  }

  .trusted-logo {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}

/* ========================================
   Final CTA Section
   ======================================== */
.final-cta {
  padding: 4rem 1rem;
  text-align: center;
  color: #fff;
}

.final-cta-content {
  max-width: 48rem;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.final-cta p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.final-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .final-cta {
    padding: 6rem 1.5rem;
  }

  .final-cta h2 {
    font-size: 2.5rem;
  }

  .final-cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* ========================================
   Improved Accessibility
   ======================================== */
:focus-visible {
  outline: 2px solid var(--whatsja-blue);
  outline-offset: 2px;
}

.btn:focus-visible,
.pricing-cta:focus-visible,
a:focus-visible {
  outline: 2px solid var(--whatsja-blue);
  outline-offset: 2px;
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--whatsja-blue);
  color: #fff;
  padding: 8px;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ========================================
   Legal Pages (Terms, Privacy, Cookies)
   ======================================== */
.legal-page {
  background-color: var(--gray-50);
  min-height: 100vh;
  padding: 2rem 1rem;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-card {
  background-color: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  margin-top: 1rem;
}

.legal-card h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--whatsja-blue);
}

.legal-updated {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 2rem;
}

.legal-section {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-200);
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-section h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.legal-section h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  margin: 1.25rem 0 0.75rem;
}

.legal-section p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.legal-section ul {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0;
}

.legal-section li {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.75;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.legal-section li::before {
  content: '•';
  position: absolute;
  left: 0.5rem;
  color: var(--whatsja-blue);
  font-weight: bold;
}

.legal-section li strong {
  color: var(--gray-800);
}

.legal-section a {
  color: var(--whatsja-blue);
  text-decoration: underline;
  transition: color 0.2s;
}

.legal-section a:hover {
  color: var(--whatsja-blue-dark);
}

/* Cookie Table */
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.8125rem;
  overflow-x: auto;
  display: block;
}

.cookie-table th,
.cookie-table td {
  border: 1px solid var(--gray-200);
  padding: 0.625rem;
  text-align: left;
}

.cookie-table th {
  background-color: var(--gray-50);
  font-weight: 600;
  color: var(--gray-800);
  white-space: nowrap;
}

.cookie-table td {
  color: var(--gray-600);
}

.cookie-warning {
  background-color: #fef3c7;
  border: 1px solid #f59e0b;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-top: 1rem;
  color: #92400e;
  font-size: 0.875rem;
}

/* Legal pages responsive */
@media (min-width: 640px) {
  .legal-page {
    padding: 3rem 1.5rem;
  }

  .legal-card {
    padding: 2.5rem;
    margin-top: 2rem;
  }

  .legal-card h1 {
    font-size: 2rem;
  }

  .legal-section h2 {
    font-size: 1.375rem;
  }

  .cookie-table {
    font-size: 0.875rem;
    display: table;
  }

  .cookie-table th,
  .cookie-table td {
    padding: 0.75rem;
  }
}

@media (min-width: 768px) {
  .legal-page {
    padding: 4rem 2rem;
  }

  .legal-card {
    padding: 3rem;
  }

  .legal-card h1 {
    font-size: 2.25rem;
  }

  .legal-section p,
  .legal-section li {
    font-size: 1rem;
  }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {

  .header,
  .footer,
  .mobile-menu,
  .final-cta {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }

  a {
    text-decoration: underline;
  }

  .legal-card {
    box-shadow: none;
    padding: 0;
  }
}