:root {
  --brand-dark: #0052D4;
  --brand-dark-navy: #002A6E; /* Añadido para gradiente */
  --brand-light: #f4fbf3;
  --brand-muted: #33C3FF; /* Celeste brillante */
  --brand-accent: #33C3FF;      /* Celeste brillante */
  --brand-accent-dark: #1AAFFF; /* Celeste más oscuro para hover */
  --header-height: 80px;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: #ffffff;
  color: var(--brand-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--brand-dark);
}

.display-6 {
  font-weight: 700;
  letter-spacing: -0.03em;
}

.lead {
  font-weight: 400;
  line-height: 1.7;
}

.hero-section {
  position: relative;
  background: linear-gradient(140deg, var(--brand-dark) 0%, var(--brand-dark-navy) 100%);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(114, 164, 41, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(138, 184, 80, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(26, 58, 40, 0.3) 100%);
  pointer-events: none;
}

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

@media (min-width: 768px) {
  .py-md-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
}

@media (min-width: 992px) {
  .hero-section .container {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
}

@media (min-width: 1200px) {
  .hero-section .container {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
}

.hero-section h1 {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  font-weight: 700;
}

.hero-section .lead {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 3px #00000033;
}

.hero-section .text-white-75 {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.hero-highlights {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 1.5rem;
  padding: 2rem;
  display: grid;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.hero-highlights:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 15px 40px rgba(0, 0, 0, 0.35);
}

.hero-highlights li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-highlights li:last-child {
  border-bottom: none;
}

.hero-highlights li strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.35rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-highlights li span {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.step-card {
  min-height: 180px;
}

.contact-card {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(13, 40, 24, 0.08);
  transition: all 0.3s ease;
}

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

.contact-card h2 {
  color: var(--brand-dark);
  font-weight: 700;
}

.contact-card a {
  transition: all 0.3s ease;
  position: relative;
}

.contact-card a:hover {
  color: var(--brand-accent) !important;
  padding-left: 0.25rem;
}

#contactForm .form-control {
  border: 1px solid rgba(13, 40, 24, 0.15);
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  background: #ffffff;
}

#contactForm .form-control:focus {
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 3px rgba(114, 164, 41, 0.12);
  background: #ffffff;
}

#contactForm .btn-dark {
  background: linear-gradient(135deg, var(--brand-dark), #0a1f14);
  border: none;
  padding: 0.875rem 2rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

#contactForm .btn-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-dark));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

#contactForm .btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

#contactForm .btn-dark:hover::before {
  opacity: 1;
}

#contactForm .btn-dark:hover {
  color: #ffffff;
}

#contactForm label {
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--brand-muted);
  margin-bottom: 0.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgb(255, 255, 255);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 58, 40, 0.1);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05), 0 1px 2px 0 rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.08), 0 2px 6px 0 rgba(0, 0, 0, 0.04);
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: rgba(26, 58, 40, 0.12);
}


.site-header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.75rem 0;
}

@media (min-width: 768px) {
  .site-header__inner {
    padding: 0.875rem 0;
    gap: 2rem;
  }
}

@media (min-width: 992px) {
  .site-header__inner {
    padding: 0.875rem 0;
    gap: 2.5rem;
  }
}

@media (min-width: 1200px) {
  .site-header__inner {
    padding: 0.875rem 0;
    gap: 3rem;
  }
}

.site-header__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  flex: 0 1 auto;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  justify-content: flex-end;
  background: rgba(114, 164, 41, 0.06);
  border: 1px solid rgba(114, 164, 41, 0.15);
  padding: 0.375rem;
  border-radius: 100px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.site-nav__link {
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  color: var(--brand-dark);
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.site-nav__link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-dark));
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: -1;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  color: #ffffff;
  border-color: var(--brand-accent);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.site-nav__link:hover::before,
.site-nav__link:focus-visible::before {
  opacity: 1;
}

.site-header__cta {
  position: relative;
  border-radius: 100px;
  padding: 0.5rem 1.5rem;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-dark));
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(114, 164, 41, 0.3);
  overflow: hidden;
  white-space: nowrap;
}

.site-header__cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--brand-accent-dark), var(--brand-dark));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.site-header__cta:hover,
.site-header__cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(114, 164, 41, 0.4);
  color: #ffffff;
}

.site-header__cta:hover::before,
.site-header__cta:focus-visible::before {
  opacity: 1;
}

.site-header__cta:active {
  transform: translateY(0);
}


header .navbar-brand {
  color: var(--brand-dark);
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  flex: 0 0 auto;
  transition: opacity 0.3s ease;
}

header .navbar-brand:hover {
  opacity: 0.8;
}

.brand-logo {
  height: 55px;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  transition: none;
  filter: none;
}

header .navbar-brand:hover .brand-logo {
  transform: none;
  filter: none;
}

@media (min-width: 768px) {
  .brand-logo {
    height: 62px;
  }
}

@media (min-width: 992px) {
  .brand-logo {
    height: 68px;
  }
}

@media (min-width: 1200px) {
  .brand-logo {
    height: 72px;
  }
}

.plan-card {
  border-top: 4px solid var(--brand-accent);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(13, 40, 24, 0.08);
  background: #ffffff;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(114, 164, 41, 0.25);
  border-top-color: var(--brand-accent-dark);
}

.plan-card .card-body {
  padding: 2rem;
}

.plan-card .card-title {
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 1.375rem;
}

.vision-card {
  border-left: 4px solid var(--brand-accent);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vision-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
  border-left-color: var(--brand-accent-dark);
}

.vision-card h3 {
  color: var(--brand-dark);
  font-weight: 700;
}

.vision-card ul li + li {
  margin-top: 0.5rem;
}

.floating-socials {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1050;
}

.floating-link {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(114, 164, 41, 0.15);
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-accent);
  box-shadow: var(--shadow-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.floating-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-dark));
  transform: scale(0);
  transition: transform 0.3s ease;
  border-radius: 50%;
  z-index: -1;
}

.floating-link:hover {
  transform: translateY(-4px) scale(1.05);
  color: #ffffff;
  border-color: var(--brand-accent);
  box-shadow: var(--shadow-xl);
}

.floating-link:hover::before {
  transform: scale(1);
}

.floating-link i {
  font-size: 1.375rem;
  position: relative;
  z-index: 1;
}

.trusted-bar {
  overflow: hidden;
}

.trusted-marquee {
  position: relative;
  overflow: hidden;
}

.trusted-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: trusted-scroll 20s linear infinite;
}

.trusted-item {
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(114, 164, 41, 0.25);
  border-radius: 999px;
  font-weight: 500;
  color: var(--brand-accent);
  background-color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trusted-item:nth-child(odd) {
  background-color: rgba(114, 164, 41, 0.08);
}

.btn-outline-dark {
  color: var(--brand-accent);
  border-color: var(--brand-accent);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-dark));
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: -1;
}

.btn-outline-dark:hover {
  background: transparent;
  color: #ffffff;
  border-color: var(--brand-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-dark:hover::before {
  transform: translateY(0);
}

.text-muted {
  color: var(--brand-muted) !important;
}

/* Section improvements */
section {
  position: relative;
}

section .text-uppercase.small {
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}

section h2, section h3 {
  margin-bottom: 1rem;
}

section .h3 {
  font-size: 1.875rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  section .h3 {
    font-size: 2.25rem;
  }
}

.bg-light {
  background-color: #fafbfa !important;
}

/* Footer improvements */
footer {
  background: linear-gradient(to bottom, #ffffff, #fafbfa) !important;
  border-top: 1px solid rgba(26, 58, 40, 0.08) !important;
}

footer .container {
  font-size: 0.9rem;
}

/* Hero buttons */
.hero-section .btn-light {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid #ffffff;
}

.hero-section .btn-light:hover {
  background: #f9fafb;
  border-color: #ffffff;
  color: var(--brand-accent);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-section .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.hero-section .btn-outline-light:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

@keyframes trusted-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .floating-socials {
    right: 1rem;
    gap: 0.75rem;
  }

  .floating-link {
    width: 48px;
    height: 48px;
  }

  .floating-link i {
    font-size: 1.25rem;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 70px;
  }

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

  .hero-section .display-6 {
    font-size: 1.75rem;
  }

  .hero-section .lead {
    font-size: 1rem;
  }

  .hero-highlights {
    text-align: left;
    padding: 1.5rem;
    gap: 1.25rem;
  }

  .hero-highlights li strong {
    font-size: 1.25rem;
  }

  .site-header__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0;
    gap: 1rem;
  }

  .site-header__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    border-radius: 1rem;
    padding: 0.5rem;
  }

  .site-nav__link {
    flex: 1 1 calc(50% - 0.25rem);
    text-align: center;
    padding: 0.625rem 1rem;
  }

  .site-header__cta {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1.5rem;
  }

  header .navbar-brand {
    flex: 1 1 auto;
    width: 100%;
  }

  .brand-logo {
    height: 60px !important;
    max-width: 100%;
  }

  .floating-socials {
    display: none;
  }

  .plan-card:hover {
    transform: translateY(-3px);
  }

  .vision-card:hover {
    transform: translateX(2px);
  }
}
/* === INICIO DE ESTILOS A�ADIDOS === */

/* 1. Bot�n CTA del Header */
.site-header__cta {
  background: var(--brand-accent) !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 12px rgba(51, 195, 255, 0.3) !important;
}
.site-header__cta:hover {
  background: var(--brand-accent-dark) !important;
  color: #FFFFFF !important;
  box-shadow: 0 6px 20px rgba(51, 195, 255, 0.4) !important;
  transform: translateY(-2px) !important;
}
.site-header__cta::before {
  content: none !important;
}

/* 2. Botones del Hero Section */
.btn-hero-primary {
  background-color: var(--brand-accent);
  color: #ffffff;
  border: 2px solid var(--brand-accent);
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 50rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease-in-out;
}
.btn-hero-primary:hover {
  background-color: var(--brand-accent-dark);
  border-color: var(--brand-accent-dark);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-hero-secondary {
  color: #ffffff;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.8);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 50rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease-in-out;
}
.btn-hero-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

/* === FIN DE ESTILOS A�ADIDOS === */
