/* =========================================================
   Movilidad Alternativa - Stylesheet
   Tema: Modern Light & Fresh Emerald Green Accents
   Diseño Responsive, Dinámico, Luminoso y Optimizado para Google Ads
   ========================================================= */

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

:root {
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-hover: #f0fdf4;
  --bg-surface: #f1f5f9;
  --bg-accent-soft: rgba(16, 185, 129, 0.08);
  --bg-accent-soft-hover: rgba(16, 185, 129, 0.15);
  
  --green-primary: #059669;
  --green-hover: #047857;
  --green-light: #10b981;
  --green-bright: #34d399;
  --green-dark: #065f46;
  --green-gradient: linear-gradient(135deg, #059669 0%, #10b981 100%);
  --green-gradient-subtle: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(52, 211, 153, 0.05) 100%);
  --green-glow: 0 0 25px rgba(16, 185, 129, 0.25);

  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light-muted: #94a3b8;
  --text-white: #ffffff;

  --border-subtle: #e2e8f0;
  --border-card: #e5e7eb;
  --border-green: rgba(16, 185, 129, 0.35);
  --border-green-active: #059669;

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.07), 0 2px 6px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 12px 30px rgba(15, 23, 42, 0.1), 0 4px 10px rgba(15, 23, 42, 0.05);
  --shadow-green: 0 10px 25px rgba(16, 185, 129, 0.25);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 9999px;

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

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-body);
  line-height: 1.68;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 12% 15%, rgba(16, 185, 129, 0.07) 0%, transparent 40%),
    radial-gradient(circle at 88% 65%, rgba(5, 150, 105, 0.06) 0%, transparent 45%),
    linear-gradient(to bottom, #f8fafc, #f1f5f9);
  background-attachment: fixed;
  min-height: 100vh;
}

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

ul {
  list-style: none;
}

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

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

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

.text-gradient {
  background: var(--green-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid var(--border-green);
  color: var(--green-primary);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.3rem;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  color: var(--text-dark);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 750px;
  margin: 0 auto 40px auto;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Top Notification Banner */
.top-notice-bar {
  background: #0f172a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 9px 16px;
  font-size: 0.84rem;
  color: #cbd5e1;
  text-align: center;
}

.top-notice-bar strong {
  color: var(--green-bright);
}

.top-notice-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-contact-info {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #94a3b8;
}

.top-contact-item a {
  color: #e2e8f0;
}

.top-contact-item a:hover {
  color: var(--green-bright);
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: var(--transition-normal);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-dark);
}

.logo-badge {
  width: 44px;
  height: 44px;
  background: var(--green-gradient);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  box-shadow: var(--shadow-green);
}

.logo-badge svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text-body);
  padding: 8px 4px;
  position: relative;
  transition: var(--transition-fast);
}

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

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  transition: var(--transition-normal);
  text-align: center;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--green-gradient);
  color: #ffffff;
  font-weight: 700;
  box-shadow: var(--shadow-green);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #047857 0%, #059669 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
  background: #ffffff;
  border: 1px solid var(--border-green);
  color: var(--green-primary);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--green-primary);
  transform: translateY(-2px);
}

.btn-whatsapp-header {
  background: #25D366;
  color: #ffffff;
  font-weight: 700;
  padding: 10px 18px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-header:hover {
  background: #1eb857;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
}

.mobile-menu-btn {
  display: none;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  color: var(--text-dark);
  padding: 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 80px 0 70px 0;
  overflow: hidden;
}

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

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -1px;
  color: var(--text-dark);
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-body);
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust-badges {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-icon {
  width: 40px;
  height: 40px;
  background: rgba(16, 185, 129, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  font-weight: 700;
}

.trust-text {
  font-size: 0.85rem;
}

.trust-text strong {
  display: block;
  color: var(--text-dark);
  font-size: 0.95rem;
}

/* Hero Visual / Card */
.hero-card {
  background: #ffffff;
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: var(--green-gradient);
  filter: blur(70px);
  opacity: 0.15;
  border-radius: 50%;
  pointer-events: none;
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.12);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.badge-live::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--green-primary);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

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

.hero-service-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.hero-service-item:hover {
  background: #f0fdf4;
  border-color: var(--green-primary);
  transform: translateX(4px);
}

.hero-service-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
}

.hero-service-info h4 {
  font-size: 1rem;
  margin-bottom: 2px;
  color: var(--text-dark);
}

.hero-service-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Sections */
.section {
  padding: 80px 0;
  position: relative;
}

.section-darker {
  background: #ffffff;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

/* Services Cards Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--green-primary);
  box-shadow: var(--shadow-green);
  background: var(--bg-card-hover);
}

.service-icon-wrapper {
  width: 60px;
  height: 60px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  margin-bottom: 24px;
  transition: var(--transition-fast);
}

.service-card:hover .service-icon-wrapper {
  background: var(--green-gradient);
  color: #ffffff;
  box-shadow: var(--shadow-green);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
  line-height: 1.7;
}

.service-features-list {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-body);
}

.service-feature-item svg {
  width: 16px;
  height: 16px;
  color: var(--green-primary);
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.94rem;
  margin-top: auto;
}

.service-link:hover {
  color: var(--green-hover);
  gap: 12px;
}

/* Detailed Service Sections */
.detail-service-block {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 36px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.detail-service-block:hover {
  border-color: var(--green-primary);
  box-shadow: var(--shadow-md);
}

.detail-service-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.detail-service-header h3 {
  font-size: 1.8rem;
  color: var(--text-dark);
}

.detail-content {
  color: var(--text-body);
  font-size: 1.02rem;
  line-height: 1.85;
}

.detail-content p {
  margin-bottom: 16px;
}

.detail-content h4 {
  color: var(--green-primary);
  font-size: 1.18rem;
  margin: 24px 0 12px 0;
}

.detail-content ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 20px;
}

.detail-content ul li {
  margin-bottom: 8px;
  color: var(--text-body);
}

/* Info Alert / Disclaimers */
.compliance-box {
  background: #ecfdf5;
  border-left: 4px solid var(--green-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 0.93rem;
  color: #065f46;
  box-shadow: var(--shadow-sm);
}

.compliance-box strong {
  color: #047857;
}

/* Process / How It Works */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.step-card {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: var(--green-primary);
  box-shadow: var(--shadow-md);
}

.step-number {
  width: 52px;
  height: 52px;
  background: var(--green-gradient);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: var(--shadow-green);
}

.step-card h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Stats Counter */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.stat-item {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.stat-item:hover {
  border-color: var(--green-primary);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green-primary);
  margin-bottom: 6px;
}

.stat-label {
  color: var(--text-body);
  font-size: 0.92rem;
  font-weight: 500;
}

/* FAQ Accordion */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

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

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

.faq-question:hover {
  color: var(--green-primary);
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--green-primary);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

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

.faq-answer {
  padding: 0 24px 20px 24px;
  color: var(--text-body);
  font-size: 0.96rem;
  line-height: 1.7;
  display: none;
}

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

/* Forms */
.form-card {
  background: #ffffff;
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Legal & Information Pages Content */
.legal-container {
  max-width: 920px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  box-shadow: var(--shadow-md);
}

.legal-header {
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 24px;
  margin-bottom: 36px;
}

.legal-header h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.legal-meta {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.legal-content {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.85;
}

.legal-content h2 {
  font-size: 1.4rem;
  color: var(--green-primary);
  margin: 32px 0 14px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}

.legal-content h3 {
  font-size: 1.15rem;
  margin: 20px 0 10px 0;
  color: var(--text-dark);
}

.legal-content p {
  margin-bottom: 18px;
  color: var(--text-body);
}

.legal-content ul, 
.legal-content ol {
  margin: 16px 0 24px 28px;
  color: var(--text-body);
}

.legal-content li {
  margin-bottom: 10px;
}

.legal-box {
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 24px 0;
}

.legal-company-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.95rem;
}

.legal-company-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.legal-company-table td:first-child {
  font-weight: 700;
  color: var(--green-primary);
  width: 35%;
}

.legal-company-table td:last-child {
  color: var(--text-dark);
}

/* Nosotros Page Styling */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.about-card {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.about-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--green-primary);
}

.about-card p {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 16px;
}

.company-official-card {
  background: #ffffff;
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
}

/* Call to Action Banner */
.cta-banner {
  background: linear-gradient(135deg, #064e3b 0%, #065f46 50%, #047857 100%);
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-green);
  color: #ffffff;
}

.cta-banner h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
  color: #ffffff;
}

.cta-banner p {
  font-size: 1.1rem;
  color: #d1fae5;
  max-width: 650px;
  margin: 0 auto 32px auto;
}

/* Footer (Full Legal & Google Ads Compliant) */
.site-footer {
  background: #0f172a;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 70px 0 30px 0;
  color: #94a3b8;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--green-bright);
}

.footer-about p {
  margin: 16px 0;
  line-height: 1.7;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #e2e8f0;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--green-bright);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #94a3b8;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--green-bright);
  padding-left: 5px;
}

.footer-disclaimer {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 30px;
  font-size: 0.82rem;
  line-height: 1.65;
  color: #94a3b8;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
}

.footer-bottom strong {
  color: #ffffff;
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: #94a3b8;
}

.footer-bottom-links a:hover {
  color: var(--green-bright);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 62px;
  height: 62px;
  background: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  z-index: 999;
  cursor: pointer;
  transition: var(--transition-normal);
  animation: float-pulse 2s infinite ease-in-out;
}

.whatsapp-float svg {
  width: 36px;
  height: 36px;
  fill: #ffffff;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.65);
}

.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background: #0f172a;
  color: #ffffff;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.15);
  pointer-events: none;
  opacity: 0;
  transition: var(--transition-fast);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(-5px);
}

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

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.breadcrumb a:hover {
  color: var(--green-primary);
}

.breadcrumb-separator {
  color: var(--text-light-muted);
}

.breadcrumb-current {
  color: var(--green-primary);
  font-weight: 600;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 768px) {
  .top-notice-bar .container {
    justify-content: center;
  }
  
  .top-contact-info {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: #ffffff;
    flex-direction: column;
    padding: 30px 24px;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition-normal);
    border-top: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }

  .nav-menu.open {
    left: 0;
  }

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

  .header-actions .btn-whatsapp-header {
    display: none;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

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

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

  .legal-container {
    padding: 30px 20px;
  }
  
  .legal-company-table td {
    display: block;
    width: 100% !important;
  }

  .legal-company-table td:first-child {
    background: rgba(16, 185, 129, 0.08);
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float svg {
    width: 30px;
    height: 30px;
  }
}
