/* ==========================================================================
   GETS - System Design & Core Stylesheet
   Paleta de Colores:
   - Base Dark: #000814
   - Travelling (Turismo): #2eaae2
   - Supernova (Corporativo): #5ecc83
   - Logística (Salud): #fce400
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

:root {
  /* Brand Palette */
  --gets-dark: #000814;
  --gets-dark-surface: #0a192f;
  --gets-card-bg: #0d1e38;
  --gets-travelling: #2eaae2;
  --gets-supernova: #5ecc83;
  --gets-logistica: #fce400;

  /* Theme Defaults (Corporativo Default) */
  --theme-color: #5ecc83;
  --theme-color-dark: #3db866;
  --theme-text-on-accent: #000814;

  /* Typography */
  --font-heading: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Neutrals */
  --text-primary: #ffffff;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --text-dark: #0f172a;
  
  --border-light: rgba(255, 255, 255, 0.12);
  --border-focus: rgba(255, 255, 255, 0.3);

  /* Elevation & Effects */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

/* Specific Theme Classes */
body.theme-corporativo {
  --theme-color: #5ecc83;
  --theme-color-dark: #46b86d;
  --theme-text-on-accent: #000814;
}

body.theme-salud {
  --theme-color: #fce400;
  --theme-color-dark: #d6c200;
  --theme-text-on-accent: #000814;
}

body.theme-turismo {
  --theme-color: #2eaae2;
  --theme-color-dark: #1f8cb9;
  --theme-text-on-accent: #ffffff;
}

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

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

/* Offset para que la barra de navegación pegajosa (sticky header) no tape los títulos */
section[id],
div[id],
article[id] {
  scroll-margin-top: 100px;
}

body {
  font-family: var(--font-body);
  background-color: #ffffff;
  color: #1e293b;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Base Form Elements & Buttons Typography (Sora) */
button,
input,
optgroup,
select,
textarea {
  font-family: 'Sora', var(--font-body), -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

button,
input[type="submit"],
input[type="button"],
input[type="reset"],
.btn,
.btn-pill-white,
.btn-pill-yellow,
.form-submit-btn,
.nav-btn-reservar,
.budget-form button,
.form-card button,
.section-form button {
  font-family: 'Sora', var(--font-heading), -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

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

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

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

/* Header Navbar */
.navbar {
  background-color: var(--gets-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.nav-brand .gets-logo-img,
.nav-brand .gets-logo-svg,
.nav-brand img {
  width: 120px !important;
  height: 84px !important;
  max-width: 120px !important;
  max-height: 84px !important;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
}

.nav-links a:hover {
  color: var(--theme-color);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Gradient Accent Separator Bar */
.gradient-bar {
  height: 5px;
  width: 100%;
  background: url('../images/brand/linea.png') no-repeat center center;
  background-size: 100% 100%;
}

/* Common Title Underline Divider (from PDF design system) */
.title-underline,
.showcase-underline,
.form-info-underline,
.logos-underline {
  height: 4px;
  width: 100%;
  max-width: 480px;
  background: url('../images/brand/linea.png') no-repeat left center;
  background-size: 100% 100%;
  margin: 8px 0 16px 0;
  display: block;
}

.section-header .title-underline,
.section-logos .logos-underline {
  margin: 12px auto 24px auto;
  max-width: 360px;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  background-color: #030a16;
  background-size: cover;
  background-position: center center;
  color: var(--text-primary);
  overflow: visible;
}

/* Hero Background Ken Burns / Visible & Subtle Zoom Effect */
@keyframes heroSubtleZoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

.hero-bg-zoom-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.hero-bg-zoom {
  position: absolute;
  top: -4%;
  left: -4%;
  width: 108%;
  height: 108%;
  background-size: cover;
  background-position: center center;
  transform: scale(1);
  will-change: transform;
  transform-origin: center center;
  animation: heroSubtleZoom 12s ease-in-out infinite;
}

.hero-bg-slide.active {
  animation: heroSubtleZoom 12s ease-in-out infinite;
}

.hero-bg-slide {
  position: absolute;
  top: -2%;
  left: -2%;
  width: 104%;
  height: 104%;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 0;
  transform: scale(1);
  will-change: transform;
  transform-origin: center center;
}

.hero-bg-slide.active {
  opacity: 1;
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 90px 0;
  margin-left: 0;
}

.hero-content-subpage {
  max-width: 720px;
  padding: 0;
  margin-left: 0;
}

.hero-content-subpage .hero-title {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 8, 20, 0.75);
}

.hero-content-subpage .hero-subtitle {
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 24px;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 8, 20, 0.75);
}

/* Hero Elements Subtle Entrance Animation */
@keyframes fadeInUpSubtle {
  0% {
    opacity: 0;
    transform: translateY(22px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content > * {
  opacity: 0;
  transform: translateY(22px);
}

.hero-ready .hero-content > * {
  animation: fadeInUpSubtle 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-ready .hero-content > *:nth-child(1) {
  animation-delay: 0.05s;
}

.hero-ready .hero-content > *:nth-child(2) {
  animation-delay: 0.18s;
}

.hero-ready .hero-content > *:nth-child(3) {
  animation-delay: 0.32s;
}

.hero-ready .hero-content > *:nth-child(4) {
  animation-delay: 0.46s;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 14px;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 8, 20, 0.7);
}

.hero-br-mobile {
  display: none;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 24px;
  font-weight: 400;
  max-width: 600px;
  text-shadow: 0 2px 10px rgba(0, 8, 20, 0.7);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
  text-decoration: none;
}

.btn-white {
  background-color: #ffffff;
  color: var(--gets-dark);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  background-color: #f8fafc;
}

.btn-theme {
  background-color: var(--theme-color);
  color: var(--theme-text-on-accent);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-theme:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Feature Cards Section ("En buenas manos") */
.section-features {
  padding: 75px 0;
  background-color: #ffffff;
  text-align: center;
}

.section-header {
  max-width: 980px;
  margin: 0 auto 36px auto;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  white-space: nowrap;
}

.section-description {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.55;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  border-radius: var(--radius-md);
  transition: transform var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon-wrapper {
  width: 100px;
  height: 100px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.feature-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.feature-card-text {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.55;
}

/* Alternating Feature Showcase Section */
.section-showcase {
  padding: 20px 0 75px 0;
  background-color: #ffffff;
}

.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.showcase-row:last-child {
  margin-bottom: 0;
}

.showcase-content {
  padding-right: 20px;
}

.showcase-row.reverse .showcase-content {
  padding-right: 0;
  padding-left: 20px;
}

.showcase-title-box {
  display: block;
  width: 100%;
}

.showcase-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.showcase-title-box .showcase-title {
  margin-bottom: 0;
}

.showcase-underline,
.showcase-title-box .showcase-underline {
  height: 4px;
  width: calc(100% + 4px);
  max-width: 100%;
  background: url('../images/brand/linea.png') no-repeat left center;
  background-size: 100% 100%;
  margin: 16px 0 20px 0;
  display: block;
}

.showcase-text {
  font-size: 1.25rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.showcase-image-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.showcase-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.showcase-image-wrapper:hover img {
  transform: scale(1.03);
}

/* Call to Action Banner */
.cta-banner {
  padding: 60px 0;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--theme-text-on-accent);
}

.cta-banner-title {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 600;
  max-width: 900px;
  margin: 0 auto 10px auto;
  line-height: 1.25;
}

.cta-banner-subtitle {
  font-size: 1.1rem;
  max-width: 750px;
  margin: 0 auto 24px auto;
  opacity: 0.95;
}

.cta-banner .btn-white {
  font-size: 1.05rem;
  padding: 16px 36px;
}

/* Contact / Budget Form Section */
.section-form {
  padding: 75px 0;
  background-color: var(--gets-dark);
  color: #ffffff;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.form-info-title {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  font-weight: 500;
  color: #ffffff;
}

.benefit-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

/* Form Styles */
.budget-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row,
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}

.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}

.benefits-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.form-control {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  padding: 14px 22px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-control:focus {
  border-color: var(--theme-color);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 44px;
}

select.form-control option {
  background-color: var(--gets-dark);
  color: #ffffff;
}

textarea.form-control {
  border-radius: 20px;
  resize: vertical;
  min-height: 90px;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--theme-color);
  cursor: pointer;
}

.form-submit-btn {
  align-self: flex-start;
  margin-top: 10px;
  min-width: 180px;
}

/* Trust Logos Section */
.section-logos {
  padding: 60px 0;
  background-color: #ffffff;
  text-align: center;
  width: 100%;
}

.section-logos .container {
  max-width: 1200px;
  padding: 0 24px;
  overflow: hidden;
}

.logos-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 36px;
}

.logos-carousel {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: logoScroll 55s linear infinite;
}

/* Sub-Brand Card Hover Glow Effects */
.card-hover-travelling {
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  border-radius: 24px !important;
  padding: 28px 22px !important;
  border: 2px solid transparent !important;
}
.card-hover-travelling:hover {
  border-color: #26b9f3 !important;
  box-shadow: 0 14px 35px rgba(38, 185, 243, 0.28) !important;
  transform: translateY(-6px) !important;
}
.card-hover-travelling:hover .card-title-text {
  color: #26b9f3 !important;
}

.card-hover-supernova {
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  border-radius: 24px !important;
  padding: 28px 22px !important;
  border: 2px solid transparent !important;
}
.card-hover-supernova:hover {
  border-color: #5ecc83 !important;
  box-shadow: 0 14px 35px rgba(94, 204, 131, 0.28) !important;
  transform: translateY(-6px) !important;
}
.card-hover-supernova:hover .card-title-text {
  color: #5ecc83 !important;
}

.card-hover-logistica {
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  border-radius: 24px !important;
  padding: 28px 22px !important;
  border: 2px solid transparent !important;
}
.card-hover-logistica:hover {
  border-color: #fce400 !important;
  box-shadow: 0 14px 35px rgba(252, 228, 0, 0.4) !important;
  transform: translateY(-6px) !important;
}
.card-hover-logistica:hover .card-title-text {
  color: #d4bf00 !important;
}

.btn-pill-black {
  background-color: #000814 !important;
  color: #ffffff !important;
  border-radius: 9999px !important;
  padding: 10px 26px !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(0, 8, 20, 0.25) !important;
  transition: all 0.25s ease !important;
  margin-top: 16px !important;
}
.btn-pill-black:hover {
  background-color: #0f172a !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(0, 8, 20, 0.4) !important;
}

.logos-carousel:hover .logos-track {
  animation-play-state: paused;
}

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

.logo-item {
  height: 145px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(10%);
  opacity: 0.95;
  transition: all var(--transition-fast);
}

.logo-item:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.06);
}

.logo-item img {
  max-height: 115px;
  max-width: 240px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Footer */
.footer {
  background-color: var(--gets-dark);
  color: #ffffff;
  padding: 70px 0 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gets-logo-footer-img,
.footer-brand > a > img {
  width: 240px !important;
  height: auto !important;
  max-width: 280px !important;
  max-height: 190px !important;
  object-fit: contain;
  display: block;
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  max-width: 100%;
  gap: 20px;
}

.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.65rem;
  transition: transform var(--transition-fast), color var(--transition-fast), opacity var(--transition-fast);
  text-decoration: none;
  background: transparent;
  border: none;
}

.social-icon-btn:hover {
  color: var(--theme-color);
  transform: translateY(-3px);
  opacity: 1;
}

.btn-whatsapp-icon,
.btn .fa-whatsapp {
  color: #5ecc83;
  font-size: 1.8rem;
  font-weight: 700;
  margin-left: -3px;
  margin-right: 2px;
  vertical-align: middle;
}

.social-icon-btn img {
  width: 20px;
  height: 20px;
}

.footer-info {
  font-size: 0.9rem;
  color: #ffffff;
  line-height: 1.6;
}

.footer-info p,
.footer-info strong,
.footer-info a {
  color: #ffffff;
}

.footer-nav-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.footer-nav-list a {
  color: #ffffff;
}

.footer-nav-list a:hover {
  color: var(--theme-color);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.85rem;
  color: #ffffff;
}

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

.footer-bottom a.asmk-link {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-bottom a.asmk-link:hover {
  color: var(--theme-color);
  opacity: 0.9;
}

/* Inline Form Feedback Message */
.form-feedback {
  display: none;
  margin-top: 16px;
  padding: 14px 20px;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.form-feedback.show {
  display: flex;
}

.form-feedback.success {
  background-color: rgba(94, 204, 131, 0.18);
  border: 1.5px solid #5ecc83;
  color: #ffffff;
}

.form-feedback.error {
  background-color: rgba(239, 68, 68, 0.2);
  border: 1.5px solid #f87171;
  color: #ffffff;
}

/* Light form variations */
.form-card[style*="#ffffff"] .form-feedback.success,
.section-form[style*="#ffffff"] .form-feedback.success {
  background-color: #ecfdf5;
  border: 1.5px solid #10b981;
  color: #065f46;
}

.form-card[style*="#ffffff"] .form-feedback.error,
.section-form[style*="#ffffff"] .form-feedback.error {
  background-color: #fef2f2;
  border: 1.5px solid #ef4444;
  color: #991b1b;
}

/* Toast Notification (Centered Bottom, no collision with WhatsApp) */
.toast-notification {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translate(-50%, 100px);
  background: #0f172a;
  color: white;
  padding: 16px 28px;
  border-radius: var(--radius-full);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 4px solid var(--theme-color);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2000;
  opacity: 0;
  max-width: 90vw;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-notification.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

/* WP Replica Helper Styles */
.nav-link-active {
  background: rgba(255, 255, 255, 0.25) !important;
  color: #ffffff !important;
  padding: 8px 22px !important;
  border-radius: 9999px !important;
  font-weight: 600 !important;
}

.nav-btn-reservar {
  background: #ffffff !important;
  color: #000814 !important;
  padding: 10px 24px !important;
  border-radius: 9999px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: transform var(--transition-fast) !important;
}

.nav-btn-reservar:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 15px rgba(255,255,255,0.3) !important;
}

.hero-floating-card {
  background: #ffffff;
  border-radius: 20px 20px 8px 8px;
  padding: 16px 24px 14px 24px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
  color: #0f172a;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  margin-bottom: -90px;
}

.hero-card-cta {
  margin-top: 6px;
  padding-left: 14px;
  text-align: left;
}

.hero-card-cta-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
}

.hero-card-cta-link:hover {
  color: #0284c7;
}

/* Home Hero Specifics */
.hero-section-home {
  background-color: #030a16;
  min-height: 720px;
  padding: 110px 0 0 0;
  position: relative;
  overflow: visible;
}

.hero-section-home .hero-bg-zoom {
  background-image: url('../images/heroes/home_hero.webp');
  background-position: center center;
}

.hero-container-home {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 640px;
  width: 100%;
}

.hero-content-home {
  padding: 40px 0 60px 0;
  max-width: 650px;
}

.section-showcase-overlap {
  padding: 230px 0 80px 0;
  background-color: #000814;
  color: #ffffff;
}

.hero-card-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: #0f172a;
  margin-bottom: 10px;
}

.hero-card-icon {
  font-size: 1.8rem;
  color: #0f172a;
  margin-bottom: 4px;
}

.hero-card-desc {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.5;
  margin: 0;
}

.green-cta-section {
  background-color: #5ecc83;
  padding: 70px 0;
  text-align: center;
  color: #ffffff;
}

.green-cta-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.green-cta-desc {
  font-size: 1.1rem;
  color: #ffffff;
  max-width: 760px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

.btn-pill-white {
  font-family: 'Sora', var(--font-heading), -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  background: #ffffff !important;
  color: #000814 !important;
  border-radius: 9999px !important;
  padding: 12px 32px !important;
  font-weight: 700 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  text-decoration: none !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
  transition: transform var(--transition-fast) !important;
}

.btn-pill-white:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25) !important;
}

.pill-input {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  padding: 12px 22px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.pill-input:focus {
  border-color: #ffffff;
}

.pill-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.pill-textarea {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 14px 22px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition-fast);
  resize: vertical;
}

.pill-textarea:focus {
  border-color: #ffffff;
}

.pill-textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.section-white-logos {
  background-color: #ffffff;
  padding: 70px 0;
  text-align: center;
}

.section-white-logos .logos-title {
  color: #0f172a;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 28px;
  right: 28px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50px;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: waPulse 2.5s infinite;
}

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

@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* reCAPTCHA v3 Badge positioning (cuadradito compacto a la izquierda, se expande al hover) */
.grecaptcha-badge {
  left: 0 !important;
  right: auto !important;
  bottom: 24px !important;
  width: 70px !important;
  overflow: hidden !important;
  border-radius: 0 6px 6px 0 !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2) !important;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  z-index: 9998 !important;
}

.grecaptcha-badge:hover {
  width: 256px !important;
}

/* Layout & Form Grid Helpers */
.benefits-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px;
}

.benefit-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1.8px solid #000814;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-size: 1.75rem;
  color: #000814;
  transition: transform 0.3s ease, border-color 0.3s ease;
  flex-shrink: 0;
}

.benefit-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #000814;
  margin-bottom: 12px;
}

.benefit-card-desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  max-width: 320px;
  margin: 0 auto;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 18px;
}

.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}

/* Service Feature Cards (servicios.html) */
.service-feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 320px;
  text-decoration: none;
  color: inherit;
  padding: 20px 16px;
  border-radius: 24px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.35s ease;
  cursor: pointer;
}

.service-feature-card:hover {
  transform: translateY(-8px);
  background-color: rgba(248, 250, 252, 0.95);
  box-shadow: 0 15px 35px rgba(0, 8, 20, 0.08);
}

.service-feature-card .service-circle-icon {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-feature-card:hover .service-circle-icon {
  transform: scale(1.08);
}

.service-circle-cyan {
  background-color: #26b9f3;
  box-shadow: 0 12px 28px rgba(38, 185, 243, 0.35);
}

.service-feature-card:hover .service-circle-cyan {
  box-shadow: 0 16px 36px rgba(38, 185, 243, 0.55);
}

.service-circle-green {
  background-color: #5ecc83;
  box-shadow: 0 12px 28px rgba(94, 204, 131, 0.35);
}

.service-feature-card:hover .service-circle-green {
  box-shadow: 0 16px 36px rgba(94, 204, 131, 0.55);
}

.service-circle-yellow {
  background-color: #fce400;
  box-shadow: 0 12px 28px rgba(252, 228, 0, 0.45);
}

.service-feature-card:hover .service-circle-yellow {
  box-shadow: 0 16px 36px rgba(252, 228, 0, 0.65);
}

.service-feature-card .service-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  transition: color 0.25s ease;
}

.service-feature-card:hover .service-card-title {
  color: #0088ff;
}

.service-feature-card .service-card-logo {
  transition: transform 0.3s ease;
}

.service-feature-card:hover .service-card-logo {
  transform: scale(1.05);
}

/* ==========================================================================
   Responsive Breakpoints (MUST BE AT THE END OF STYLESHEET)
   ========================================================================== */
@media (max-width: 992px) {
  .section-title {
    font-size: 1.8rem;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits-grid-3 {
    grid-template-columns: 1fr !important;
    gap: 55px !important;
  }
  .benefit-card {
    padding: 0;
  }
  .form-row-2,
  .form-row-3 {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .showcase-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .showcase-row.reverse {
    display: flex;
    flex-direction: column-reverse;
  }
  .showcase-content, .showcase-row.reverse .showcase-content {
    padding: 0;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .logos-grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 30px;
  }
  .hero-content,
  .hero-content-subpage {
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
    padding: 35px 0 !important;
  }
  .hero-title,
  .hero-content-subpage .hero-title {
    font-size: 2.1rem !important;
    line-height: 1.25 !important;
  }
  .hero-subtitle,
  .hero-content-subpage .hero-subtitle {
    font-size: 1.05rem !important;
  }
  .hero-section-home {
    min-height: auto !important;
    padding: 90px 0 0 0 !important;
    background-position: center 22% !important;
  }
  .hero-container-home {
    min-height: auto !important;
    justify-content: flex-start !important;
  }
  .hero-content-home {
    padding: 30px 0 280px 0 !important;
  }
  .hero-floating-card {
    grid-template-columns: 1fr !important;
    gap: 20px;
    padding: 24px 20px;
    margin-top: 0 !important;
    margin-bottom: -110px !important;
    border-radius: 20px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .hero-card-cta {
    text-align: center !important;
    padding-left: 0 !important;
    margin-top: 14px !important;
    width: 100% !important;
  }
  .section-showcase-overlap {
    padding: 170px 0 60px 0 !important;
  }
}

@media (max-width: 768px) {
  .navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-brand {
    order: 1;
  }
  .navbar .container > div {
    order: 2;
    margin-left: auto !important;
    margin-right: 14px !important;
  }
  .nav-btn-reservar {
    background: #00a2ff !important;
    color: #000814 !important;
    padding: 7px 16px !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
  }
  .mobile-menu-btn {
    order: 3;
    display: block;
    margin-left: 0 !important;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--gets-dark);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  }
  .nav-links.active {
    display: flex;
  }
  .hero-section {
    min-height: 420px !important;
    height: auto !important;
    padding: 50px 0 !important;
  }
  .hero-br-mobile {
    display: block;
  }
  .hero-section-home {
    background: none !important;
    position: relative !important;
    padding: 0 0 40px 0 !important;
    min-height: auto !important;
  }
  .hero-section-home .hero-bg-zoom-wrap {
    height: 590px !important;
  }
  .hero-section-home .hero-bg-zoom {
    background-position: 35% center !important;
    transform-origin: 35% center !important;
  }
  .hero-container-home {
    position: relative;
    z-index: 1;
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .hero-content,
  .hero-content-subpage {
    padding: 20px 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
    text-align: left;
  }
  .hero-content-home {
    height: 570px;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: 0 0 20px 0 !important;
    max-width: 290px !important;
  }
  .hero-content-home > * {
    opacity: 1 !important;
    animation: none !important;
  }
  .hero-title,
  .hero-content-subpage .hero-title {
    font-size: 1.45rem !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    margin-bottom: 14px !important;
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 8, 20, 0.95) !important;
    word-break: normal;
  }
  .hero-subtitle,
  .hero-content-subpage .hero-subtitle {
    font-size: 0.92rem !important;
    line-height: 1.45 !important;
    color: #ffffff !important;
    margin-bottom: 22px !important;
    text-shadow: 0 2px 10px rgba(0, 8, 20, 0.95) !important;
  }
  .hero-floating-card {
    grid-template-columns: 1fr !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 24px 20px !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12) !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 32px !important;
    box-sizing: border-box !important;
    background: #ffffff !important;
  }
  .section-showcase-overlap {
    padding: 60px 0 60px 0 !important;
  }
  .section-title {
    font-size: 1.5rem;
    white-space: normal;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid-3 {
    grid-template-columns: 1fr !important;
    gap: 55px !important;
  }
  .form-row,
  .form-row-2,
  .form-row-3 {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cta-banner-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .hero-br-mobile {
    display: block;
  }
  .hero-section-home {
    background: none !important;
    position: relative !important;
    padding: 0 0 35px 0 !important;
    min-height: auto !important;
  }
  .hero-section-home .hero-bg-zoom-wrap {
    height: 590px !important;
  }
  .hero-section-home .hero-bg-zoom {
    background-position: 35% center !important;
    transform-origin: 35% center !important;
  }
  .hero-container-home {
    position: relative;
    z-index: 1;
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .hero-content-home {
    height: 570px;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: 0 0 20px 0 !important;
    max-width: 285px !important;
  }
  .hero-content-home > * {
    opacity: 1 !important;
    animation: none !important;
  }
  .hero-title,
  .hero-content-subpage .hero-title {
    font-size: 1.42rem !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    margin-bottom: 14px !important;
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 8, 20, 0.95) !important;
  }
  .hero-subtitle,
  .hero-content-subpage .hero-subtitle {
    font-size: 0.88rem !important;
    line-height: 1.45 !important;
    color: #ffffff !important;
    margin-bottom: 20px !important;
    text-shadow: 0 2px 10px rgba(0, 8, 20, 0.95) !important;
  }
  .hero-floating-card {
    grid-template-columns: 1fr !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 20px 16px !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12) !important;
    gap: 28px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    background: #ffffff !important;
  }
  .section-showcase-overlap {
    padding: 50px 0 50px 0 !important;
  }
}
