/* ==========================================================================
   VARIABLES DE DISEÑO CORPORATIVO (Paleta Oficial Embarcaciones Venezuela)
   ========================================================================== */
:root {
  --chinese-black: #0d111f;
  --carnellan: #c3191a;
  --carnellan-hover: #9e1415;
  --white: #ffffff;
  --light-silver: #f4f5f8;
  --text-dark: #0d111f;
  --text-muted: #555555;
  --font-primary: "Montserrat", sans-serif;
  --font-heading: "Neusharp", sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --glass-bg: rgba(255, 255, 255, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-family: var(--font-primary);
  color: var(--text-dark);
  overflow-x: hidden;
}
body {
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  overflow: hidden;
  background-color: #0b111e; /* Fallback si el video no carga */
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Oscurecimiento para asegurar contraste del texto */
  background: rgba(11, 17, 30, 0.65);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 2rem 1rem;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #e2e8f0;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Visibilidad de Foco para Teclado (WCAG 2.4.7) */
.btn:focus-visible,
.video-control-btn:focus-visible {
  outline: 3px solid #38bdf8;
  outline-offset: 4px;
}

.video-control-btn {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 3;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 50%;
  cursor: pointer;
}

/* Ajuste de contenedor para pantallas pequeñas */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.relative-z {
  z-index: 2;
  position: relative;
}

/* Clases Útiles de Color y Texto */
.carnellan-text {
  color: var(--carnellan);
}
.black-text {
  color: var(--chinese-black);
}
.navy-text {
  color: var(--chinese-black);
}
.dark-text {
  color: var(--text-dark);
}
.white-text {
  color: var(--white);
}
.gold-text {
  color: var(--carnellan);
}
.bg-chinese-black {
  background-color: var(--chinese-black);
  color: var(--white);
}
.bg-light {
  background-color: var(--light-silver);
}
.bg-white {
  background-color: var(--white);
}

/* Tipografía Responsiva */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
}
.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3.5rem;
  position: relative;
  padding-bottom: 1rem;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--carnellan);
}
.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  margin-top: -2.5rem;
  margin-bottom: 3rem;
  font-weight: 400;
}

/* Botones */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.1rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 4px;
  transition: var(--transition-smooth);
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}
.primary-cta {
  background-color: var(--carnellan);
  color: var(--white);
  border: none;
  box-shadow: 0 10px 30px rgba(195, 25, 26, 0.2);
}
.primary-cta:hover {
  background-color: var(--carnellan-hover);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(195, 25, 26, 0.4);
}

/* NAVBAR */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: var(--transition-smooth);
  background: transparent;
}
header.scrolled,
header.menu-open {
  background-color: rgba(13, 17, 31, 0.98);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(217, 217, 217, 0.2);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/* LOGO */
.logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
  text-decoration: none;
  z-index: 1001;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex-direction: row;
}
.logo-img {
  height: 1.25em;
  width: 1.25em;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--carnellan);
  background-color: var(--white);
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition-smooth);
}
.nav-links a:hover {
  color: var(--carnellan);
}
.nav-cta {
  border: 1px solid var(--carnellan);
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  color: var(--carnellan) !important;
}
.nav-cta:hover {
  background-color: var(--carnellan);
  color: var(--white) !important;
}
.menu-toggle {
  display: none;
  color: var(--carnellan);
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 1001;
}

@media (max-width: 991px) {
  .menu-toggle {
    display: block;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--chinese-black);
    flex-direction: column;
    padding: 2rem 0;
    gap: 1.5rem;
    border-bottom: 1px solid var(--carnellan);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: var(--transition-smooth);
  }
  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* ==========================================================================
   HERO SECTION CON VIDEO DE FONDO
   ========================================================================== */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding-top: 80px;
  overflow: hidden;
  background-color: var(--chinese-black);
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(13, 17, 31, 0.35) 0%,
    rgba(13, 17, 31, 0.65) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 3rem 2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(217, 217, 217, 0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-title-main {
  font-size: 3.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: 1px;
  margin: 0;
}

/* Adaptación responsive para el Hero */
@media (max-width: 768px) {
  .container {
    width: 95%;
  }
  .hero-section {
    height: 80vh;
    align-items: center;
    padding-bottom: 0;
  }
  .hero-content {
    max-width: 90%;
    padding: 2rem 1.5rem;
    margin: 0 auto;
  }
  .hero-title-main {
    font-size: 2.2rem;
  }
  .logo {
    font-size: 1rem;
  }
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
  }
  .section-subtitle {
    font-size: 1rem;
    margin-top: -1.5rem;
    margin-bottom: 2rem;
  }
}

/* ==========================================================================
   SECCIONES CON IMAGEN DE FONDO (OSCURAS)
   ========================================================================== */
.bg-section-img {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

.section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 17, 31, 0.85);
  z-index: 1;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(217, 217, 217, 0.3);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

/* ESTADÍSTICAS / TRAYECTORIA */
.stats-section {
  padding: 6rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.stat-card {
  padding: 3rem 2rem;
  text-align: center;
  transition: var(--transition-smooth);
}
.stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}
.stat-number {
  display: block;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 1rem;
}
.stat-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}
@media (min-width: 500px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* LAYOUT SPLIT (DOS COLUMNAS) */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.reverse-layout {
  direction: rtl;
}
.reverse-layout > * {
  direction: ltr;
}
.split-image img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid var(--carnellan);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: var(--transition-smooth);
}
.split-image img:hover {
  transform: scale(1.02);
}
@media (max-width: 991px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .reverse-layout {
    direction: ltr;
  }
  .split-image img {
    min-height: 300px;
  }
}

/* ==========================================================================
   TARJETAS PARA SECCIONES CLARAS (BENEFICIOS, SERVICIOS Y FAQ)
   ========================================================================== */
.content-card-light {
  background: var(--white);
  border: 1px solid rgba(13, 17, 31, 0.12);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
}

.content-card-light:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: var(--carnellan);
}

/* BENEFICIOS */
.benefits-section {
  padding: 6rem 0;
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.benefit-card {
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.benefit-card i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--carnellan);
}
.benefit-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

/* SERVICIOS */
.services-section {
  padding: 5rem 0 7rem;
  border-top: 1px solid rgba(217, 217, 217, 0.4);
}
.services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.services-list li {
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  transition: var(--transition-smooth);
}
.services-list li:hover {
  background: var(--chinese-black);
  color: var(--white) !important;
  transform: scale(1.02);
  border-color: var(--carnellan);
}
.services-list li:hover i {
  color: var(--carnellan);
}

/* FLOTA */
.fleet-section {
  padding: 7rem 0;
}
/* Se amplía max-width para que entren 3 tarjetas holgadamente */
.fleet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.card-image-wrapper {
  height: 300px;
  overflow: hidden;
  border-bottom: 1px solid rgba(217, 217, 217, 0.4);
}
.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(105%);
  transition: var(--transition-smooth);
}
.fleet-card:hover .card-img {
  filter: grayscale(0%);
  transform: scale(1.05);
}
.card-body {
  padding: 2.5rem;
}
.card-title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.card-vibe {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--carnellan);
}

/* Adaptación responsive para las 3 columnas de la flota */
@media (min-width: 800px) {
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .fleet-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}
@media (max-width: 768px) {
  .fleet-section {
    padding: 4rem 0;
  }
  .card-image-wrapper {
    height: 250px;
  }
  .card-body {
    padding: 1.5rem;
  }
}

/* FAQ (ACCORDION) */
.faq-section {
  padding: 7rem 0;
  border-top: 1px solid rgba(217, 217, 217, 0.4);
}
.accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.accordion-item {
  overflow: hidden;
}
.accordion-header {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  background: transparent;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
  font-family: var(--font-heading);
}
.accordion-header:hover,
.accordion-item.active .accordion-header {
  background: var(--chinese-black);
  color: var(--white) !important;
}
.accordion-content {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion-item.active .accordion-content {
  padding: 1.5rem;
  max-height: 800px;
  border-top: 1px solid rgba(217, 217, 217, 0.4);
}

/* FOOTER */
.footer-section {
  padding: 6rem 0 2rem;
  position: relative;
}
.footer-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-cta-title {
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 2.5rem;
  text-align: center;
  font-family: var(--font-heading);
}
.cta-buttons-group {
  margin-bottom: 5rem;
}
.footer-glass-bar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem 3rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  text-align: center;
  margin-bottom: 3rem;
  border-radius: 50px;
}
.footer-col {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}
.footer-col a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition-smooth);
}
.footer-col a:hover {
  color: var(--carnellan);
}
.footer-separator {
  display: none;
  width: 1px;
  height: 20px;
  background: var(--carnellan);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 992px) {
  .footer-glass-bar {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
  .footer-separator {
    display: block;
  }
}
@media (max-width: 768px) {
  .footer-cta-title {
    font-size: 1.5rem;
  }
  .cta-btn {
    width: 100%;
    padding: 1rem;
    font-size: 0.9rem;
  }
  .footer-glass-bar {
    border-radius: 8px;
    padding: 1.5rem 1rem;
  }
}

/* ANIMACIONES FADE-IN */
.fade-in-element {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.fade-in-element.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.fade-in-element.scrolled-past {
  opacity: 0.3;
  transform: translateY(-20px) scale(0.95);
}

/* ==========================================================================
   COMPONENTES DESPLEGABLES (FLOTA)
   ========================================================================== */
.details-toggle {
  background: transparent;
  border: 1px solid var(--carnellan);
  color: var(--carnellan);
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  margin-top: 1.5rem;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}
.details-toggle:hover,
.details-toggle:focus-visible {
  background: var(--carnellan);
  color: var(--white);
  outline: 2px solid var(--white);
  outline-offset: 2px;
}
.details-toggle i {
  transition: transform 0.3s ease;
}
.details-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}
.fleet-details {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(217, 217, 217, 0.4);
  padding-top: 1.5rem;
}
.fleet-details[hidden] {
  display: none;
}
.booking-form fieldset {
  border: none;
  margin: 1.5rem 0;
  padding: 0;
}
.booking-form legend {
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.radio-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.radio-group label {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-weight: 500;
}
.radio-group input[type="radio"] {
  appearance: none;
  background-color: var(--white);
  border: 2px solid var(--carnellan);
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  display: grid;
  place-content: center;
  cursor: pointer;
}
.radio-group input[type="radio"]::before {
  content: "";
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--carnellan);
}
.radio-group input[type="radio"]:checked::before {
  transform: scale(1);
}
.radio-group input[type="radio"]:focus-visible {
  outline: 2px solid var(--carnellan);
  outline-offset: 3px;
}
.reserve-btn {
  width: 100%;
  margin-top: 1rem;
}

/* ==========================================================================
   ESTILOS COMPACTOS PARA TESTIMONIOS (SLIDER)
   ========================================================================== */
:root {
  --t-color-primary: var(--carnellan, #c3191a);
  --t-color-bg: var(--light-silver, #f4f5f8);
  --t-color-text: var(--text-dark, #0d111f);
  --t-color-card-bg: var(--white, #ffffff);
  --t-color-muted: var(--text-muted, #555555);
}

.testimonials-section {
  padding: 4rem 0; /* Sección compacta */
  overflow: hidden;
}

.testimonial-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.slider-viewport {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
}

.slider-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

/* Tarjeta Individual */
.testimonial-card {
  flex: 0 0 100%; /* 1 tarjeta por vista en móviles */
  background: var(--t-color-card-bg);
  border: 1px solid rgba(13, 17, 31, 0.08);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 180px; /* Altura compacta fija */
  box-sizing: border-box;
}

.testimonial-card .card-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testimonial-card .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--t-color-primary);
  flex-shrink: 0;
}

.testimonial-card .user-info {
  overflow: hidden;
}

.testimonial-card .user-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--t-color-text);
  margin: 0;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testimonial-card .user-tag {
  font-size: 0.8rem;
  color: var(--t-color-muted);
  display: block;
}

.testimonial-card .stars {
  color: #ffb800;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin: 0.4rem 0;
}

.testimonial-card .comment {
  font-size: 0.88rem;
  color: var(--t-color-text);
  line-height: 1.35;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Límite de 3 líneas máximo */
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Botones de Navegación */
.slider-arrow {
  background: var(--t-color-card-bg);
  border: 1px solid rgba(13, 17, 31, 0.15);
  color: var(--t-color-text);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  z-index: 2;
}

.slider-arrow:hover {
  background: var(--t-color-primary);
  color: #ffffff;
  border-color: var(--t-color-primary);
}

.slider-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Indicadores de Puntos */
.slider-dots-container {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(13, 17, 31, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--t-color-primary);
  width: 24px;
  border-radius: 12px;
}

/* Adaptabilidad Responsive */
@media (min-width: 600px) {
  .testimonial-card {
    flex: 0 0 calc((100% - 1.5rem) / 2); /* 2 tarjetas en tablets */
  }
}

@media (min-width: 992px) {
  .testimonial-card {
    flex: 0 0 calc((100% - 3rem) / 3); /* 3 tarjetas en Desktop */
  }
}

/* ==========================================================================
   ESTILOS COMPACTOS CTA - ALIADOS COMERCIALES
   ========================================================================== */
:root {
  /* Variables de la Sección CTA (Conectadas con tu paleta corporativa) */
  --cta-bg-overlay: rgba(
    13,
    17,
    31,
    0.82
  ); /* Tono oscuro corporativo con opacidad */
  --cta-primary-color: var(--carnellan, #c3191a);
  --cta-title-color: #ffffff;
  --cta-text-color: rgba(255, 255, 255, 0.92);
  --cta-button-bg: #25d366; /* Verde oficial de WhatsApp */
  --cta-button-hover-bg: #1ebd59;
  --cta-button-text: #ffffff;
}

.business-cta-section {
  position: relative;
  width: 100%;
  padding: 3.5rem 1.5rem; /* Altura compacta y equilibrada */
  background-image: url("img/fondo_negocios.jpg"); /* MARCADOR DE POSICIÓN PARA TU IMAGEN */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

/* Capa de Superposición Oscura (Garantiza 100% legibilidad) */
.business-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--cta-bg-overlay);
  z-index: 1;
}

/* Contenedor Interior Centrado */
.business-cta-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Título Principal */
.business-cta-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--cta-title-color);
  margin: 0 0 0.8rem 0;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

/* Texto Secundario */
.business-cta-text {
  font-size: 1.05rem;
  color: var(--cta-text-color);
  margin: 0 0 1.8rem 0;
  max-width: 650px;
  line-height: 1.5;
  font-weight: 400;
}

/* Botón de WhatsApp */
.business-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background-color: var(--cta-button-bg);
  color: var(--cta-button-text);
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.business-cta-button i {
  font-size: 1.3rem;
}

.business-cta-button:hover,
.business-cta-button:focus-visible {
  background-color: var(--cta-button-hover-bg);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  outline: none;
}

/* Adaptabilidad Móvil */
@media (max-width: 768px) {
  .business-cta-section {
    padding: 2.5rem 1rem; /* Aún más compacto en móviles */
  }

  .business-cta-title {
    font-size: 1.75rem;
  }

  .business-cta-text {
    font-size: 0.95rem;
    margin-bottom: 1.4rem;
  }

  .business-cta-button {
    width: 100%;
    max-width: 320px;
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
  }
}
/* ==========================================================================
   SECCIÓN NUESTROS DESTINOS (DISEÑO COMPACTO Y ELEGANTE)
   ========================================================================== */
.destinations-section {
  background-color: var(--white, #ffffff);
  padding: 3.5rem 0; /* Padding reducido para evitar scroll */
}

/* Contenedor Grid Principal */
.dest-compact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

/* ====== COLUMNA IZQUIERDA ====== */
.dest-visual-column {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.dest-radio-group {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.dest-radio-item {
  cursor: pointer;
  user-select: none;
}

.dest-radio-item input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.radio-pill {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: var(--light-silver, #f4f5f8);
  color: var(--text-muted, #555555);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.dest-radio-item:hover .radio-pill {
  background-color: #e8eaed;
}

.dest-radio-item input[type="radio"]:checked + .radio-pill {
  background-color: var(--carnellan, #c3191a);
  color: var(--white, #ffffff);
  box-shadow: 0 4px 10px rgba(195, 25, 26, 0.2);
}

.dest-image-viewer {
  width: 100%;
  height: 380px; /* Altura controlada fija */
  border-radius: 12px;
  overflow: hidden;
  background-color: #0d111f;
}

.dest-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity 0.3s ease,
    transform 0.4s ease;
}

/* ====== COLUMNA DERECHA (TARJETA) ====== */
.dest-info-column {
  display: flex;
}

.dest-side-card {
  background-color: #fafafa; /* Un gris sumamente claro para contrastar con el fondo blanco */
  border: 1px solid rgba(13, 17, 31, 0.05);
  border-radius: 12px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
}

.dest-badge {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--carnellan, #c3191a);
  margin-bottom: 1rem;
}

.dest-card-title {
  font-size: 2.2rem;
  color: var(--chinese-black, #0d111f);
  margin-bottom: 0.8rem;
  line-height: 1.1;
  transition: opacity 0.25s ease;
}

.dest-card-desc {
  color: var(--text-muted, #555555);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  transition: opacity 0.25s ease;
}

.dest-card-divider {
  border: none;
  height: 1px;
  background-color: rgba(13, 17, 31, 0.1);
  margin: 0 0 2rem 0;
}

/* Botón Elegante CTA */
.dest-elegant-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  color: var(--chinese-black, #0d111f);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.8rem 1rem 0.8rem 1.5rem;
  border: 2px solid var(--chinese-black, #0d111f);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.dest-elegant-btn .btn-icon {
  background-color: var(--chinese-black, #0d111f);
  color: var(--white, #ffffff);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.dest-elegant-btn:hover {
  background-color: var(--chinese-black, #0d111f);
  color: var(--white, #ffffff);
  border-color: var(--chinese-black, #0d111f);
}

.dest-elegant-btn:hover .btn-icon {
  background-color: var(--white, #ffffff);
  color: var(--chinese-black, #0d111f);
  transform: translateX(3px);
}

/* Adaptabilidad Desktop */
@media (min-width: 992px) {
  .dest-compact-layout {
    grid-template-columns: 1fr 400px; /* Divide en 2 columnas perfectas */
  }
}

/* Adaptabilidad Móvil */
@media (max-width: 768px) {
  .dest-image-viewer {
    height: 280px; /* Más corto en móviles */
  }
  .dest-side-card {
    padding: 2rem 1.5rem;
  }
  .dest-card-title {
    font-size: 1.8rem;
  }
}
/* ==========================================================================
   SECCIÓN BENEFICIOS (ESTILOS COMPACTOS Y ELEGANTES)
   ========================================================================== */
.benefits-section {
  padding: 2.5rem 0; /* Espaciado vertical reducido para evitar scroll */
  background-color: var(--bg-light, #f8f9fa);
}

.compact-benefits-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

/* CARRUSEL RESTRUCTURADO */
.split-image-slider {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 360px;
}

.benefits-carousel,
.benefits-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.benefits-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  z-index: 1;
}

.benefits-slide.active {
  opacity: 1;
  z-index: 2;
}

.benefits-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.benefits-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(13, 17, 31, 0.6);
  color: #ffffff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.benefits-arrow:hover {
  background: var(--carnellan, #c3191a);
}

.benefits-arrow.prev-slide {
  left: 10px;
}
.benefits-arrow.next-slide {
  right: 10px;
}

.benefits-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 6px;
}

.benefits-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.benefits-dots .dot.active {
  background: #ffffff;
  width: 18px;
  border-radius: 10px;
}

/* GRILLA Y TARJETAS DE BENEFICIOS */
.benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.benefit-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(13, 17, 31, 0.06);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  border-color: rgba(195, 25, 26, 0.2);
}

/* Encabezado flex para ahorrar espacio vertical */
.card-header-flex {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}

.card-header-flex h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

/* Insignias para los íconos */
.benefit-icon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(195, 25, 26, 0.06);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.benefit-icons-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.6rem;
  border-radius: 8px;
  background: rgba(195, 25, 26, 0.06);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.benefit-card p {
  font-size: 0.88rem;
  line-height: 1.45;
  margin: 0;
  color: var(--text-muted, #555555);
}

/* Ajustes Responsivos */
@media (min-width: 992px) {
  .compact-benefits-layout {
    grid-template-columns: 1fr 1fr; /* Dos columnas en pantallas grandes */
  }
}

@media (max-width: 768px) {
  .benefits-section {
    padding: 2rem 0;
  }
  .split-image-slider {
    min-height: 220px;
    max-height: 250px;
  }
  .benefit-card {
    padding: 0.85rem 1rem;
  }
  .card-header-flex h3 {
    font-size: 0.98rem;
  }
  .benefit-card p {
    font-size: 0.82rem;
  }
}

/* ==========================================================================
   SECCIÓN SERVICIOS EXCLUSIVOS (ESTILOS COMPACTOS)
   ========================================================================== */
.services-section {
  padding: 2.5rem 0; /* Espaciado ajustado para visualización sin scroll excesivo */
}

.compact-services-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

/* Imagen Compacta */
.services-image-container {
  width: 100%;
  height: 100%;
  min-height: 280px;
  max-height: 320px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.services-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Lista de Servicios */
.compact-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.service-item-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-radius: 10px;
  background-color: #ffffff;
  border: 1px solid rgba(13, 17, 31, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.service-item-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  border-color: rgba(195, 25, 26, 0.25);
}

.service-icon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(195, 25, 26, 0.06);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.service-title {
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.35;
  color: var(--navy-color, #0d111f);
}

/* Ajuste Responsivo */
@media (min-width: 992px) {
  .compact-services-layout {
    grid-template-columns: 1fr 1fr;
  }

  /* Para mantener el diseño en espejo (imagen a la derecha) si usas reverse-layout */
  .compact-services-layout.reverse-layout .services-image-container {
    order: 2;
  }
  .compact-services-layout.reverse-layout .services-content {
    order: 1;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 2rem 0;
  }
  .services-image-container {
    min-height: 220px;
    max-height: 250px;
  }
  .service-item-card {
    padding: 0.9rem 1rem;
  }
  .service-title {
    font-size: 0.9rem;
  }
}

/* Alineación perfecta entre texto numérico e ícono */
.stat-card .stat-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 1.2em; /* Asegura misma altura de línea que 100%, 45+ y +400 */
}

.stat-check-svg {
  width: 1.2em;
  height: 1.2em;
  display: block;
}

/* Botón Flotante de WhatsApp (Fijo y Estático) */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #25d366; /* Verde Oficial WhatsApp */
  color: #ffffff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Sombra suave de elevación, sin brillo */
  z-index: 9999;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

/* Hover limpio sin animaciones estrafalarias */
.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: scale(1.05);
}

/* Ajuste sutil para smartphones para que no tape contenido */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 28px;
    bottom: 18px;
    right: 18px;
  }
}

.am-fleet-amenities {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.8rem;
}
.am-fleet-amenities li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.am-services-included h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: var(--accent);
}

.am-white-text {
  color: var(--white);
}

.am-fleet-details-inner {
  overflow: hidden;
}

.am-accent-text {
  color: var(--accent);
}

.am-card-vibe {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
/* --- Variables de Marca --- */
:root {
  /* Manteniendo estrictamente los colores del manual de marca */
  --bg-dark: #0d111f;
  --accent-red: #c3191a;
  --text-silver: #d9d9d9;
  --text-white: #ffffff;
}

/* --- Contenedor Principal (Compacto) --- */
.site-footer {
  background-color: var(--bg-dark);
  color: var(--text-silver);
  font-family:
    "Montserrat", sans-serif; /* Ajusta a la tipografía que estés usando */
  padding: 40px 0 15px 0; /* Padding reducido para menor altura */
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  padding: 0 20px;
}

/* --- Marca y Descripción --- */
.footer-logo {
  color: var(--text-white);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.logo-icon {
  width: 20px;
  height: 20px;
  color: var(--accent-red);
}

.footer-description {
  color: var(--text-silver);
  line-height: 1.5;
  font-size: 0.85rem;
  margin: 0;
}

/* --- Títulos de Columnas --- */
.col-title {
  color: var(--text-white);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 16px 0;
  position: relative;
  display: inline-block;
}

/* Pequeña línea roja debajo del título para mantener la identidad visual */
.col-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 20px;
  height: 2px;
  background-color: var(--accent-red);
}

/* --- Enlaces y Transiciones (Suaves y duraderas) --- */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px; /* Reducido para compactar */
}

.footer-links a {
  color: var(--text-silver);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition:
    color 0.3s ease,
    padding-left 0.3s ease; /* Transición cuidada */
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent-red);
  padding-left: 4px; /* Leve desplazamiento para interactividad */
}

.highlight-link {
  color: var(--text-white) !important;
  font-weight: 700;
}

/* --- Redes Sociales --- */
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(217, 217, 217, 0.1); /* Fondo sutil plateado */
  border-radius: 50%;
  color: var(--text-silver);
  transition: all 0.3s ease; /* Transición fluida para que el efecto dure */
}

.social-btn svg {
  width: 18px;
  height: 18px;
}

.social-btn:hover {
  background-color: var(--accent-red); /* Color de marca al hacer hover */
  color: var(--text-white);
  transform: translateY(-2px); /* Pequeño salto elegante */
}

/* --- Parte Inferior (Copyright) --- */
.footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0;
  padding: 15px 20px 0;
  border-top: 1px solid rgba(217, 217, 217, 0.1);
  text-align: center;
  font-size: 0.75rem;
  color: rgba(217, 217, 217, 0.7);
}

.footer-bottom p {
  margin: 0;
}

/* --- Diseño Responsivo --- */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

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

  .col-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

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

  .footer-links a:hover {
    padding-left: 0;
    transform: scale(1.05); /* Cambia el efecto en móvil por algo centrado */
  }
}

/* =========================================
   VENTANA EMERGENTE (MODAL) DE CONTACTO
   ========================================= */

/* Fondo oscuro que cubre toda la pantalla */
.modal-overlay {
  display: none; /* Oculto por defecto */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(
    13,
    17,
    31,
    0.85
  ); /* Azul oscuro de la marca con transparencia */
  z-index: 9999;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Clase para mostrar el modal */
.modal-overlay.activo {
  display: flex;
  opacity: 1;
}

/* La caja roja central */
.modal-content {
  background-color: #c3191a; /* Rojo de la marca */
  color: #ffffff; /* Letras blancas */
  width: 90%;
  max-width: 450px;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s ease;
}

.modal-overlay.activo .modal-content {
  transform: translateY(0) scale(1);
}

/* Botón de cerrar "X" */
.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
}

.modal-close:hover {
  transform: scale(1.1);
  color: #d9d9d9;
}

/* Círculo blanco para resaltar el logo */
.modal-logo-wrapper {
  width: 80px;
  height: 80px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.modal-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tipografía de la ventana */
.modal-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.modal-text {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #f8f8f8;
}

/* Botón principal hacia WhatsApp */
.modal-btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: #c3191a;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
  width: 100%;
}

.modal-btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.25);
  background-color: #f0f0f0;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-img {
  width: 36px; /* Ancho deseado */
  height: 36px; /* Debe ser igual al ancho para mantener proporción 1:1 */
  border-radius: 50%; /* Convierte la imagen en un círculo perfecto */
  object-fit: cover; /* Evita que la imagen se estire o distorsione */
  display: block;
}
