/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --header-height: 60px;
    --container-padding: 0.5rem;
  }
  
  /* Importar fuentes ligeras y redondeadas */
  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Nunito:wght@300;400;500&display=swap');
  
  body, * {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  }
  
  body {
    background: #fff;
    color: #222;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 34px;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
  }
  
  header {
    position: fixed;
    top: 34px;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 0.5rem 0;
    background: #0066cc;
    margin-top: 0;
  }
  
  header .container {
    margin-top: 0;
    padding-top: 0;
  }
  
  .header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .logo {
    width: 48px;
    height: 48px;
  }
  
  .logo-text-image {
    height: 20px;
    width: auto;
    margin-top: 20px;
    margin-left: -12px;
  }
  
  .header-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .header-right nav {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  
  .header-right nav ul {
    justify-content: center;
    gap: 1rem;
    margin: 0 auto;
    flex: 1;
  }
  
  .header-right nav ul li a {
    font-size: 0.9rem;
    padding: 0.7rem 1rem;
    font-weight: 400;
    color: white;
  }
  
  .header-right nav ul li.has-submenu > a {
    padding-right: 2rem;
  }
  
  .language-switcher .lang-btn {
    /* Si hay estilos específicos para el contenedor, déjalos aquí */
  }
  
  .lang-btn {
    position: relative;
    background: transparent;
    border: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.3em 0.5em;
    min-width: 32px;
    min-height: 32px;
    font-size: 0.8em;
    gap: 0.15em;
    vertical-align: middle;
  }
  .lang-btn::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 14px;
    vertical-align: middle;
    margin: 0;
    margin-right: 0;
    margin-bottom: 0.1em;
    border-radius: 2px;
    opacity: 0.5;
    transition: opacity 0.2s, filter 0.2s, box-shadow 0.2s;
  }
  .lang-btn[data-lang="es"]::before {
    background: linear-gradient(to bottom, #c60b1e 0%, #c60b1e 33.33%, #ffc400 33.33%, #ffc400 66.66%, #c60b1e 66.66%, #c60b1e 100%);
  }
  .lang-btn[data-lang="en"]::before {
    background:
      linear-gradient(45deg, #1e3a8a 0%, #1e3a8a 100%),
      linear-gradient(to bottom, transparent 40%, #dc2626 40%, #dc2626 60%, transparent 60%),
      linear-gradient(to right, transparent 40%, #dc2626 40%, #dc2626 60%, transparent 60%),
      linear-gradient(45deg, transparent 45%, rgba(255,255,255,0.3) 45%, rgba(255,255,255,0.3) 55%, transparent 55%),
      linear-gradient(-45deg, transparent 45%, rgba(255,255,255,0.3) 45%, rgba(255,255,255,0.3) 55%, transparent 55%);
    background-blend-mode: screen;
  }

  .logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
  }
  
  .logo-link:hover {
    transform: scale(1.05);
  }
  
  .logo-text-container {
    display: block;
  }
  
  .logo-text-image {
    height: auto;
    max-width: 100%;
    display: block;
  }
  
  header h1 {
    font-size: 1.5rem;
    margin: 0;
  }
  
  nav {
    width: 100%;
    margin-top: 0.5rem;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  
  nav a {
    color: white;
    text-decoration: none;
    font-family: 'Segoe UI', 'Calibri', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    padding: 0.5rem;
    display: block;
    transition: background-color 0.3s;
    line-height: 1.8;
    letter-spacing: 0.2px;
    text-transform: uppercase;
  }
  
  nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
  }
  
  .hero {
    position: relative;
    color: white;
    text-align: center;
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  
  .hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    z-index: 0;
  }
  
  .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  
  .slide.active {
    opacity: 1;
  }
  
  .slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 6s ease-in-out;
  }
  
  .slide.active .slide-bg {
    transform: scale(1.1);
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    background: none;
    border-radius: 10px;
    padding: 2rem;
    backdrop-filter: none;
  }
  
  .hero-content h2, .hero-content p {
    text-shadow: 0 2px 8px rgba(0,0,0,0.7), 0 1px 0 #000;
  }
  
  .hero-content h2 {
    font-weight: bold;
    font-size: 2.5rem;
  }
  
  .hero h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    letter-spacing: 0.5px;
    font-weight: 400;
  }
  
  .hero-content p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
  }
  
  .btn {
    background-color: #0066cc;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    font-size: 1rem;
    cursor: pointer;
  }
  
  .btn:hover {
    background-color: #00d9e5;
    color: #ffffff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  
  .btn:hover *, .btn:focus * {
    color: #033e5b !important;
    transition: color 0.2s;
  }
  
  .section {
    padding: 3rem 1rem;
    text-align: center;
  }
  
  .section p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
  }
  
  .section .btn {
    display: inline-block;
    margin: 0 auto;
  }
  
  .section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #033e5b;
    font-weight: 600;
  }
  
  .cards {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
    list-style: none;
  }
  
  .card {
    background: white;
    border-radius: 4px;
    padding: 1.5rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
  }
  
  .card:hover {
    transform: scale(1.02);
    background: #fffbf0;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.25);
  }
  
  .card h3 {
    color: #033e5b;
    margin: 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.3px;
  }
  
  
  /* Responsive Design */
  @media (min-width: 480px) {
    :root {
      --container-padding: 0.75rem;
    }
    
    .logo {
      width: 56px;
      height: 56px;
    }
    
    .hero-content h2 {
      font-size: 3rem;
    }
    
    .section h2 {
      font-size: 2rem;
    }
    
    .hero-content p {
      font-size: 1.5rem;
    }
    
    .logo-text-image {
      height: 22px;
      width: auto;
      margin-top: 24px;
      margin-left: -14px;
    }
  }
  
  @media (min-width: 768px) {
    header .container {
      flex-wrap: nowrap;
    }
    
    .header-right {
      flex-wrap: nowrap;
    }
    
    .language-switcher {
      margin-left: 1.5rem;
    }
    
    .lang-btn {
      padding: 0.3rem 0.6rem;
      font-size: 0.9rem;
    }
    
    .logo {
      width: 64px;
      height: 64px;
    }
    
    .logo-text {
      font-size: 2.2rem;
    }
    
    nav {
      width: auto;
      margin-top: 0;
    }
    
    nav ul {
      flex-direction: row;
      gap: 1rem;
    }
    
    .cards {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .hero {
      padding: 4rem 1rem;
    }
    
    .hero-content h2 {
      font-size: 3.5rem;
    }
    
    .hero-content p {
      font-size: 1.7rem;
    }
    
    .logo-text-image {
      height: 24px;
      width: auto;
      margin-top: 28px;
      margin-left: -16px;
    }
  }
  
  @media (min-width: 1024px) {
    :root {
      --container-padding: 1rem;
    }
    
    .logo {
      width: 72px;
      height: 72px;
    }
    
    .logo-text {
      font-size: 2.5rem;
    }
    
    .cards {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .section {
      padding: 4rem 1rem;
    }
    
    .logo-text-image {
      height: 26px;
      width: auto;
      margin-top: 32px;
      margin-left: -18px;
    }
  }
  
  /* Ajustes para pantallas muy grandes */
  @media (min-width: 1440px) {
    body {
      font-size: 18px;
    }
    
    .container {
      max-width: 1400px;
    }
    
    :root {
      --container-padding: 0.5rem;
    }
  }
  
  /* Ajustes para dispositivos móviles en orientación horizontal */
  @media (max-height: 500px) and (orientation: landscape) {
    .hero {
      min-height: 100vh;
    }
    
    nav ul {
      flex-direction: row;
    }
  }
  
  /* Ajustes para dispositivos con pantalla táctil */
  @media (hover: none) {
    .btn:hover,
    .card:hover {
      transform: none;
    }
    
    nav a:active {
      background-color: rgba(255, 255, 255, 0.2);
    }
  }
  
  .has-submenu {
    position: relative;
  }
  
  .submenu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 180px;
    border-radius: 0 0 4px 4px;
    z-index: 10;
    padding: 0.5rem 0;
    background: #0f2d5c;
    border: 1px solid #1e3a8a;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
  
  .submenu li {
    text-align: left;
  }
  
  .submenu a {
    color: white;
    padding: 0.5rem 1.2rem;
    font-size: 0.95rem;
    border-radius: 0;
    transition: background 0.2s;
  }
  
  .submenu a:hover {
    
    background: #1e3a8a;
  }
  
  .has-submenu > .submenu,
  .submenu li.has-submenu > .submenu {
    display: none;
  }
  
  .has-submenu.open > .submenu,
  .submenu li.has-submenu.open > .submenu {
    display: block;
  }
  
  /* Asegurar que el hover funcione en dispositivos de escritorio */
  @media (min-width: 768px) {
    .has-submenu:hover > .submenu,
    .submenu li.has-submenu:hover > .submenu {
      display: block;
    }
  }
  
  @media (max-width: 767px) {
    .has-submenu:focus-within > .submenu,
    .submenu li.has-submenu:focus-within > .submenu {
      display: block;
    }
    .submenu {
      position: static;
      min-width: 0;
      box-shadow: none;
      border-radius: 0;
      background: #006d9c;
      padding-left: 1.5rem;
    }
    .has-submenu > a::after {
      content: '▼';
      font-size: 0.7em;
      margin-left: 0.4em;
    }
  }
  
  .has-submenu > a {
    position: relative;
    padding-right: 2em;
  }
  
  .has-submenu > a::after {
    content: '▼';
    font-size: 0.8em;
    font-family: inherit;
    position: absolute;
    right: 1.2em;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
  }
  
  .submenu .has-submenu > a::after {
    content: '►';
    font-size: 0.8em;
    font-family: inherit;
    position: absolute;
    right: 1.2em;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
  }
  
  .submenu li.has-submenu:hover > .submenu,
  .submenu li.has-submenu:focus-within > .submenu {
    display: block;
  }
  
  .submenu .submenu.open-left {
    left: auto;
    right: 100%;
    margin-left: 0;
    margin-right: 0.2rem;
    border-radius: 4px 0 4px 4px;
  }
  
  .submenu li.has-submenu {
    position: relative;
    display: block;
  }
  
  .submenu .submenu {
    left: 100%;
    top: 0;
    margin-left: 0.2rem;
    border-radius: 0 4px 4px 4px;
    min-width: 180px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    display: none;
    position: absolute;
    z-index: 20;
    background: #0f2d5c;
    border: 1px solid #1e3a8a;
  }
  
  main h1 {
    margin-top: 3rem;
    margin-left: 2rem;
  }
  
  .hero--small {
    height: 40vh;
    min-height: 170px;
    max-height: 280px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100vw;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
    background: none;
  }
  
  .hero--small .hero-content {
    width: 100%;
    max-width: 100vw;
    padding: 0 2rem;
    background: none;
    box-shadow: none;
    border-radius: 0;
    text-align: center;
    margin: 0 auto;
  }
  
  .hero--small h1 {
    font-size: 2.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7), 0 1px 0 #000;
    margin: 0 auto;
  }
  
  @media (min-width: 480px) {
    .hero--small h1 {
      font-size: 3rem;
    }
  }
  
  @media (min-width: 768px) {
    .hero--small h1 {
      font-size: 3.5rem;
    }
  }
  
  /* Hero pequeño alineado a la izquierda para subpáginas */
  .hero--small.hero--left {
    background: none !important;
    display: flex;
    align-items: end;
    min-height: 260px;
    max-height: 400px;
    height: 40vh;
    width: 100vw;
    position: relative;
    overflow: hidden;
    margin-top: -20px;
  }
  .hero--small.hero--left .hero-content {
    max-width: 600px;
    margin-left: calc((100vw - 1200px)/2 - 18px);
    text-align: left;
    padding-left: 0;
    margin-top: auto;
    margin-bottom: 0.5em;
  }
  .hero--small.hero--left .hero-content .h2,
  .hero--small.hero--left .hero-content h2 {
    margin-bottom: 0;
    color: #033e5b;
    text-shadow: none;
  }
  
  /* Estructura de columnas reutilizable para subpáginas */
  .columns-main {
    max-width: 1200px;
    margin: 1.2rem auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    align-items: flex-start;
    width: 100%;
  }
  .columns-col-text {
    flex: 1 1 340px;
    min-width: 300px;
    max-width: 600px;
    box-sizing: border-box;
  }
  .columns-col-media {
    flex: 1 1 320px;
    min-width: 260px;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    box-sizing: border-box;
  }
  
  /* Para juntar el bloque de columnas al hero */
  .columns--tight {
    margin-top: -2.5em !important;
  }
  
  .section-title {
    color: #008cba;
    font-size: 1.3em;
    font-weight: 600;
    margin-top: 2.2em;
    margin-bottom: 1em;
    text-align: left;
  }
  .section-price {
    font-size: 2.2rem;
    color: inherit;
    font-weight: 400;
    margin-top: 0.3em;
  }
  .section-intro {
    margin-bottom: 1.3em;
  }
  .section-info p {
    margin-bottom: 1.5em;
  }
  .section-info p + p {
    margin-top: 1.5em;
  }
  .section-info p + ul {
    margin-top: 1.5em;
  }
  .section-info ul + p {
    margin-top: 1.5em;
  }
  .section-info h3, .section-info h4 {
    margin-top: 2.2em;
    margin-bottom: 1em;
  }
  .section-info ul {
    margin-top: 1.5em;
    margin-bottom: 2em;
  }
  .section-info li {
    margin-bottom: 0.7em;
  }
  .columns-col-text p {
    margin-bottom: 1.5em !important;
  }

  #bautismo-videos {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2em;
    justify-content: flex-start;
    width: 100%;
    box-sizing: border-box;
  }
  .video-thumb {
    width: calc(33% - 1.2em);
    min-width: 220px;
    max-width: 340px;
    cursor: pointer;
    margin-bottom: 1em;
    box-sizing: border-box;
  }
  .video-thumb-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,140,186,0.13);
    transition: transform 0.2s;
    display: block;
  }
  .video-thumb-img:hover {
    transform: scale(1.04);
  }
  @media (max-width: 700px) {
    .video-thumb {
      width: 100% !important;
      min-width: 0;
      max-width: 100%;
    }
  }
  
  @media (max-width: 800px) {
    .columns-main {
      flex-direction: column;
      gap: 1.5rem;
    }
    .columns-col-text, .columns-col-media {
      max-width: 100%;
      min-width: 0;
    }
  }
  
  /* Enlaces destacados reutilizables */
  .section-link {
    color: #008cba;
    text-decoration: underline;
    font-weight: 400;
    transition: color 0.2s;
  }
  .section-link:hover {
    color: #00d9e5;
  }
  
  
  .site-footer {
    background: #0f2d5c;
    color: white;
    padding: 1.5rem 0 0.75rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    list-style: none;
  }
  
  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .footer-heading {
    color: white;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
  }
  
  .footer-contact a,
  .footer-links a {
    color: #b8c5d6;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
  }
  
  .footer-contact a:hover,
  .footer-links a:hover {
    color: #00d9e5;
  }
  
  /* Estilos para iconos de teléfono y email en el footer */
  .footer-contact a svg,
  .footer-links a svg {
    color: #b8c5d6 !important;
    stroke: #b8c5d6 !important;
    transition: color 0.3s ease, stroke 0.3s ease;
  }
  
  .footer-contact a:hover svg,
  .footer-links a:hover svg {
    color: #00d9e5 !important;
    stroke: #00d9e5 !important;
  }
  
  /* Espaciado entre iconos y texto en el footer */
  .footer-contact a,
  .footer-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  /* Alinear el heading "Contacto" con el texto, no con los iconos */
  .footer-contact .footer-heading {
    padding-left: 1.8rem;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 0.75rem;
    margin-top: 1.5rem;
    color: #b8c5d6;
    font-size: 0.85rem;
  }
  
  .footer-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
  }
  
  .footer-padi {
    width: 80px;
    height: 80px;
    object-fit: contain;
  }

  /* Estilos para los iconos de redes sociales en el footer */
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

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

  .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8c5d6;
  }

  .footer-social a svg {
    width: 20px;
    height: 20px;
  }

  /* Sobrescribir estilos globales para desactivar efectos hover */

  .footer-social a[href*="whatsapp"]:hover svg {
    stroke: #25D366 !important;
    color: #25D366 !important;
  }

  .footer-social a[href*="instagram"]:hover svg {
    stroke: #E4405F !important;
    color: #E4405F !important;
  }
  
  /* Quitar puntos de lista en el footer */
  .site-footer li {
    list-style: none;
  }
  
  /* Estilo para los títulos de páginas de cursos */
  .destacado-intro {
    font-size: 1.4rem;
    line-height: 1.5;
    color: #033e5b;
    margin-bottom: 2rem;
    text-align: left;
    font-weight: 600;
    letter-spacing: 0.5px;
  }
  
  /* Google Reviews Widget */

  .stars {
    color: #ffd700;
    font-size: 1.2rem;
  }
  
  .rating-number {
    font-size: 1.5rem;
    font-weight: bold;
  }

  
  .reviews-carousel {
    position: relative;
    margin-bottom: 2rem;
  }
  
  .reviews-carousel-container {
    position: relative;
    overflow: hidden;
    height: auto;
    min-height: 300px;
  }
  
  .reviews-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease-in-out;
    width: max-content;
  }
  
  .review-card {
    background: white;
    border-radius: 4px;
    padding: 0.75rem;
    border-left: 4px solid #0095d4;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-width: 310px;
    max-width: 310px;
    flex-shrink: 0;
  }
  

  
  .review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
  }
  
  .reviewer-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .reviewer-avatar {
    width: 32px;
    height: 32px;
    background: #e3f2fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
  }
  
  .reviewer-details {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }
  
  .reviewer-name {
    font-weight: 600;
    color: #333;
    font-size: 0.85rem;
  }
  
  .review-stars {
    color: #ffd700;
    font-size: 0.8rem;
  }
  
  .review-date {
    font-size: 0.7rem;
    color: #666;
    font-style: italic;
  }
  
  .review-text {
    color: #555;
    line-height: 1.4;
    font-style: italic;
    font-size: 0.85rem;
  } 

  
  @media (min-width: 1024px) {
  }
  
  @media (max-width: 767px) {
  }
  
  @media (min-width: 768px) and (max-width: 1023px) {
  }

  @media (max-width: 768px) {
    .google-reviews-header {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }

    .google-reviews-rating {
      justify-content: center;
    }

    .google-reviews-actions {
      justify-content: center;
    }

    .google-reviews-widget {
    padding: 1rem;
    }

    .reviews-cta {
      flex-direction: column;
      text-align: center;
      gap: 1.5rem;
      padding: 1.5rem;
    }

    .reviews-cta-image {
      order: -1;
    }
  }

  @media (max-width: 480px) {
    .google-reviews-actions {
      flex-direction: column;
      width: 100%;
    }

    .google-reviews-link {
      justify-content: center;
    }

    .reviews-cta {
      padding: 1rem;
    }

    .reviews-cta-content h3 {
      font-size: 1.1rem;
    }
  }
  
  .carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .carousel-btn {
    background: #ccc;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .carousel-btn.active {
    background: #0066cc;
    box-shadow: 0 2px 8px rgba(0, 149, 212, 0.3);
    cursor: pointer;
  }

  .carousel-btn.disabled {
    background: #ccc;
    cursor: not-allowed;
    pointer-events: none;
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .carousel-btn.active:hover {
    background: #00d9e5;
  }

  .carousel-btn.disabled:hover {
    background: #ccc;
    transform: none;
  }
  
  .parallax-section {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('images/backgrounds/parallax-index.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    z-index: 1;
  }

  .parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
  }

  .parallax-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  }

  .parallax-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    max-width: 600px;
    margin: 0 auto;
  }

  @media (max-width: 768px) {
    .parallax-section {
      height: 300px;
    }
    
    .parallax-bg {
      background-attachment: scroll;
    }
    
    .parallax-content h2 {
      font-size: 2rem;
    }
    
    .parallax-content p {
      font-size: 1rem;
    }
  }
  
  /* Estilos específicos para el título de contacto */
  
  /* Estilos para la página de contacto */
  .contacto-form-col,
  .contacto-info-col {
    width: 100%;
  }

  .contacto-info-col {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contacto-info {
    padding: 0;
    background: none;
    border-radius: 0;
    border: none;
    text-align: center;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: -4rem;
  }



  
  /* Scroll suave para enlaces internos */
  html {
    scroll-behavior: smooth;
  }
  
  /* Estilos para el formulario de contacto */
  .contacto-form {
    padding: 0 0 2rem 0;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 0.75rem 0;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    border-radius: 0;
    background: transparent;
    font-size: 1rem;
    transition: border-bottom-color 0.3s;
    box-shadow: none;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: none;
    border-bottom-color: #0066cc;
    background: transparent;
    box-shadow: none;
  }
  
  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    color: #6c757d;
  }
  
  .contact-form .btn-primary {
    background-color: #0066cc;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    font-size: 1rem;
    cursor: pointer;
  }
  
  .ideal-para {
    font-weight: 600;
    color: #033e5b;
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 1.5rem 0;
  }
  
  /* Estilos para las nuevas tarjetas de cursos */
  .courses-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
    max-width: 1200px;
    margin: 0 auto;
  }

  .course-card {
    background: white;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    overflow: hidden;
    position: relative;
  }

  .course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  }

  .course-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
  }

  .course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .course-category {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: #008cba;
    color: white;
    padding: 4px 8px;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .course-content {
    padding: 1.25rem;
    position: relative;
  }

  .course-content h3 {
    font-weight: 500;
    color: #033e5b;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    letter-spacing: 0.2px;
    font-size: 1.1rem;
  }

  .course-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
  }

  .course-price {
    position: absolute;
    bottom: 12px;
    left: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #033e5b;
  }

  /* Responsive para las tarjetas de cursos */
  @media (min-width: 768px) {
    .courses-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .courses-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 2.5rem;
    }
    
    .course-card {
      max-width: 350px;
    }
  }
  
  .top-contact-bar, .top-contact-bar * {
    box-sizing: border-box;
  }
  .top-contact-bar {
    width: 100vw;
    background: #fff;
    color: #033e5b;
    font-size: 0.92rem;
    border-bottom: 1px solid #e6f7ff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
    z-index: 20;
    position: fixed;
    top: 0;
    left: 0;
    height: 34px;
    display: flex;
    align-items: center;
  }
  .top-contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0.3em 1em;
    flex-wrap: wrap;
      justify-content: center;
    width: 100%;
  }
  .top-contact-item {
    display: flex;
    align-items: center;
    gap: 0.3em;
    font-size: 1em;
  }
  .top-contact-item a, .top-contact-icons a {
    color: #033e5b !important;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    display: flex;
    align-items: center;
  }

  @media (max-width: 600px) {
    .top-contact-content {
      flex-direction: column;
      align-items: center;
      gap: 0.5em;
      padding: 0.3em 0.5em;
      justify-content: center;
    }
    .top-contact-bar {
      font-size: 0.95em;
    }
  }
  .top-contact-item svg, .top-contact-icons svg {
    cursor: pointer;
    transition: transform 0.2s;
    stroke: #008cba !important;
    color: #008cba !important;
    fill: none !important;
  }
  .top-contact-item a[rel~="noopener"], .top-contact-icons a[rel~="noopener"] {
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
  }
  .top-contact-icons {
    display: flex;
    align-items: center;
    gap: 1.2em;
    margin: 0 2em;
  }
  
  .top-contact-bar a:hover,
  .top-contact-bar .top-contact-item a:hover,
  .top-contact-bar a:hover *,
  .top-contact-bar .top-contact-item a:hover * {
    color: #00d9e5;
    stroke: #00d9e5;
    transition: color 0.2s, stroke 0.2s;
  }
  .top-contact-bar a svg {
    transition: color 0.2s, stroke 0.2s, transform 0.2s;
  }
  .top-contact-bar a:hover svg {
    stroke: #00d9e5;
    color: #00d9e5;
  }

  /* WhatsApp e Instagram: color corporativo en hover */
  .top-contact-bar a[href*="whatsapp"]:hover svg,
  .top-contact-bar a[href*="whatsapp"]:hover *,
  .top-contact-icons a[href*="whatsapp"]:hover svg {
    stroke: #25D366 !important;
    color: #25D366 !important;
  }
  .top-contact-bar a[href*="instagram"]:hover svg,
  .top-contact-bar a[href*="instagram"]:hover *,
  .top-contact-icons a[href*="instagram"]:hover svg {
    stroke: #E4405F !important;
    color: #E4405F !important;
  }
  
  /* Cursos - grilla y filtros (migrados de cursos-es.html) */
  .courses-hero {
    background: white;
    color: #333;
    padding: 1rem 0;
    text-align: center;
    margin-top: 74px;
  }
  .courses-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0;
    font-weight: 400;
  }
  .courses-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
  }
  .courses-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    text-align: left;
  }
  .courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(265px, 320px));
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
  }
  .course-card {
    background: white;
    border-radius: 0px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
  }
  .course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    text-decoration: none;
    color: inherit;
  }
  .course-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-bottom: 1px solid #e0e0e0;
  }
  .course-card-content {
    padding: 0.8rem;
    padding-bottom: 3rem;
  }
  .course-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
  }
  .course-card p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
  }
  .course-price {
    position: absolute;
    bottom: 0.8rem;
    left: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    z-index: 2;
  }
  .course-btn {
    display: block;
    background: #0066cc;
    color: white;
    padding: 0.7rem 1rem;
    text-decoration: none;
    border-radius: 0px;
    font-weight: 500;
    transition: background 0.3s ease;
    text-align: center;
    width: 100%;
    border: none;
    cursor: pointer;
  }
  .course-btn:hover {
    background: #00d9e5;
  }
  .course-category {
    position: absolute;
    bottom: 0.8rem;
    right: 1rem;
    background: #f0f8ff;
    color: #008cba;
    padding: 0.2rem 0.6rem;
    border-radius: 0px;
    font-size: 0.75rem;
    font-weight: 500;
    z-index: 2;
  }
  .courses-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    text-align: center;
  }
  .filter-btn {
    background-color: #0066cc;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    box-shadow: none;
  }
  .filter-btn:hover, .filter-btn.active {
    background-color: #00d9e5;
    color: #ffffff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  @media (max-width: 768px) {
    .courses-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    .courses-hero h1 {
      font-size: 2.5rem;
    }
    .courses-container {
      padding: 2rem 1rem;
    }
  }
  .lang-btn {
    position: relative;
    background: transparent;
    border: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.3em 0.5em;
    min-width: 32px;
    min-height: 32px;
    font-size: 0.8em;
    gap: 0.15em;
  }
  .lang-btn::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 14px;
    vertical-align: middle;
    margin: 0;
    margin-right: 0;
    margin-bottom: 0.1em;
    border-radius: 2px;
    opacity: 0.4;
    transition: opacity 0.2s;
  }
  .lang-btn[data-lang="es"]::before {
    background: linear-gradient(to bottom, #c60b1e 0%, #c60b1e 33.33%, #ffc400 33.33%, #ffc400 66.66%, #c60b1e 66.66%, #c60b1e 100%);
  }
  .lang-btn[data-lang="en"]::before {
    background:
      linear-gradient(45deg, #1e3a8a 0%, #1e3a8a 100%),
      linear-gradient(to bottom, transparent 40%, #dc2626 40%, #dc2626 60%, transparent 60%),
      linear-gradient(to right, transparent 40%, #dc2626 40%, #dc2626 60%, transparent 60%),
      linear-gradient(45deg, transparent 45%, rgba(255,255,255,0.3) 45%, rgba(255,255,255,0.3) 55%, transparent 55%),
      linear-gradient(-45deg, transparent 45%, rgba(255,255,255,0.3) 45%, rgba(255,255,255,0.3) 55%, transparent 55%);
    background-blend-mode: screen;
  }
  .lang-btn span {
    display: none !important;
  }
  
  /* Ajustes para el layout original del header */
  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  @media (max-width: 900px) {
    header .container {
      flex-direction: column;
      align-items: stretch;
    }
    .header-content {
      justify-content: center;
      width: 100%;
    }
  }
  
  .lang-btn {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.3em 0.5em;
    min-width: 32px;
    min-height: 32px;
    font-size: 0.8em;
    gap: 0.15em;
  }
  .lang-btn::before {
    margin-right: 0;
    margin-bottom: 0.1em;
  }
  
  .lang-btn:hover::before {
    opacity: 1;
  }
  .lang-btn:hover span {
    opacity: 1;
    color: #fff;
  }
  
  .lang-btn:not(.active) span {
    color: #888;
  }
  
  .lang-btn.active::before {
    width: 26px;
    height: 17px;
    opacity: 1;
  }
  
  nav li > ul {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: #033e5b;
    min-width: 180px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    border-radius: 0 0 4px 4px;
    z-index: 10;
    padding: 0.5rem 0;
  }
  nav li > ul li {
    text-align: left;
  }
  nav li > ul a {
    color: white;
    padding: 0.5rem 1.2rem;
    font-size: 0.95rem;
    border-radius: 0;
    transition: background 0.2s;
  }
  nav li > ul a:hover {
    background: #005b8c;
  }
  @media (max-width: 767px) {
    nav li > ul {
      position: static;
      min-width: 0;
      box-shadow: none;
      border-radius: 0;
      background: #006d9c;
      padding-left: 1.5rem;
    }
  }
  
  .fondo-oscuro {
    background: #0f2d5c;
    color: #fff;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-left: 2rem;
    padding-right: 2rem;
    box-sizing: border-box;
  }
  
  .fondo-oscuro h2 {
    color: #fff !important;
  }

  .fondo-claro {
    background: #0066cc10;
  }

  .foto-redonda {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 2rem auto 1rem auto;
  }
  
  .btn-google {
    background-color: #0066cc;
    color: #ffffff;
    padding: 0.4rem 1.2rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 2.5rem;
    position: relative;
  }

  .btn-google-content {
    display: block;
    text-align: center;
  }

  .btn-google:hover {
    background-color: #00d9e5;
    color: #ffffff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .btn-google p {
    display: block;
    font-weight: 400;
    margin: 0.2em 0 0 0;
  }
  
  .contacto-bottom {
    padding: 0.5rem 0.5rem;
  }

  @media (min-width: 1024px) {
    .contacto-bottom {
      padding: 1rem 1rem;
    }
  }
  
  .contacto-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }

  .contacto-info h4 {
    margin-bottom: 1.5rem;
    color: #033e5b;
    text-align: center;
  }

  .contacto-info .top-contact-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .contacto-info .top-contact-item {
    padding: 0;
    border-radius: 0;
    transition: none;
    transition: color 0.3s ease;
  }

  .contacto-info .top-contact-item:hover {
    background: none;
    color: #00d9e5;
  }

  .contacto-info .top-contact-item:hover svg {
    color: #00d9e5 !important;
    stroke: #00d9e5 !important;
  }

  .contacto-info .top-contact-item:hover span {
    color: #00d9e5 !important;
  }

  @media (max-width: 768px) {
    .contacto-columns {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .contacto-info {
      padding: 1.5rem;
    }
  }
  
  /* Hero Cursos reutilizable */
  .hero-cursos {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 3rem;
    padding: 2.5rem 1rem 2rem 1rem;
    min-height: 340px;
    margin-top: 6rem;
  }
  .hero-cursos-img {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    width: 100%;
    max-width: 700px;
  }
  .hero-cursos-img img {
    width: 100%;
    max-width: 550px;
    height: auto;
    object-fit: cover;
    display: block;
    margin: 1.1rem 0 0 0;
    align-self: flex-end;
  }
  .hero-cursos-content {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 0;
  }
  .hero-cursos-content h2 {
    font-size: 2.3rem;
    margin: 0 0 0.5rem 0;
    color: #033e5b;
    font-weight: 700;
  }
  .hero-cursos-content .section-price {
    font-size: 1.5rem;
    color: inherit;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  .hero-cursos-content p {
    text-align: justify;
    margin-right: 8rem;
    font-size: 1.1rem;
  }
  @media (max-width: 900px) {
    .hero-cursos {
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
      padding: 2rem 0.5rem 1.5rem 0.5rem;
      min-height: unset;
    }
    .hero-cursos-img {
      justify-content: center;
      margin-bottom: 0.5rem;
    }
    .hero-cursos-content {
      align-items: center;
      text-align: center;
      padding-top: 0;
    }
  }
  
  .requisitos-list {
    list-style: none;
    padding-left: 0;
    text-align: center;
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0 auto 0 auto;
    display: block;
  }
  .requisitos-list li {
    margin-bottom: 0.7em;
  }
  
  .requisitos-title {
    color: #fff;
    text-align: center;
    margin-bottom: 1.2rem;
    font-size: 2rem;
    font-weight: 600;
  }
  
  .y-despues-section {
    background: none;
    padding: 2.5rem 0 2rem 0;
  }
  .y-despues-text {
    text-align: center;
    font-size: 1.15rem;
    color: #033e5b;
    margin: 0 auto;
    max-width: 600px;
    line-height: 1.7;
  }
  
  .y-despues-title {
    color: #0066cc;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .cursos-relacionados {
    padding: 3rem 0;
    margin-bottom: 2rem;
  }

  .cursos-relacionados .section-title {
    text-align: center;
    margin-bottom: 2rem;
    color: #0066cc;
    font-size: 1.8rem;
  }
  
  /* Estilos extraídos de inline styles */
  .top-contact-item-link {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3em;
  }

  .top-contact-item-link--email {
    margin-right: 2.5em;
  }

  .top-contact-item-link--contact {
    margin-bottom: 1rem;
  }

  .top-contact-icons-gap {
    gap: 0.8em;
  }

  .svg-vertical-align {
    vertical-align: middle;
  }

  .span-margin-left {
    margin-left: 0.3em;
  }

  .hero-cursos-btn-container {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
  }

  .section-padding-large {
    padding: 2.5rem 0;
  }

  .container-max-width-1200 {
    max-width: 1200px;
  }

  .container-max-width-700 {
    max-width: 700px;
  }

  .h2-white-center {
    color: #fff;
    text-align: center;
    margin-bottom: 2.2rem;
  }

  .h2-blue-center {
    text-align: center;
    color: #033e5b;
    margin-bottom: 2.2rem;
  }

  .bautismo-pasos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: stretch;
  }

  .bautismo-pasos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: stretch;
  }

  .bautismo-paso {
    background: none;
    color: #fff;
    font-size: 1.1rem;
    text-align: left;
  }

  .bautismo-paso-white {
    background: none;
    color: #fff;
    font-size: 1.1rem;
    text-align: left;
  }

  .videos-section {
    padding: 2.5rem 0 2rem 0;
    background: none;
  }

  .bautismo-videos-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    justify-items: center;
  }

  .video-modal-hidden {
    display: none;
  }

  .parallax-bg-advanced-open-water-01 {
    background-image: url('images/advanced/advanced-parallax-01.webp');
  }

  .parallax-bg-advanced-open-water-02 {
    background-image: url('images/advanced/advanced-parallax-02.webp');
  }

  .parallax-bg-flotabilidad-01 {
    background-image: url('images/flotabilidad/flotabilidad-parallax-01.webp');
  }

  .parallax-bg-flotabilidad-02 {
    background-image: url('images/flotabilidad/flotabilidad-parallax-02.webp');
  }

  .parallax-bg-navegacion-01 {
    background-image: url('images/navegacion/navegacion-parallax-01.webp');
  }

  .parallax-bg-navegacion-02 {
    background-image: url('images/navegacion/navegacion-parallax-02.webp');
  }

  .parallax-bg-nitrox-01 {
    background-image: url('images/nitrox/nitrox-parallax-01.webp');
  }

  .parallax-bg-nitrox-02 {
    background-image: url('images/nitrox/nitrox-parallax-02.webp');
  }

  .parallax-bg-nocturno-01 {
    background-image: url('images/nocturno/nocturno-parallax-01.webp');
  }

  .parallax-bg-nocturno-02 {
    background-image: url('images/nocturno/nocturno-parallax-02.webp');
  }

  .parallax-bg-open-water-01 {
    background-image: url('images/open-water/open-water-parallax-01.webp');
  }

  .parallax-bg-open-water-02 {
    background-image: url('images/open-water/open-water-parallax-02.webp');
  }

  .parallax-bg-pecios-01 {
    background-image: url('images/pecios/pecios-parallax-01.webp');
  }

  .parallax-bg-pecios-02 {
    background-image: url('images/pecios/pecios-parallax-02.webp');
  }

  .parallax-bg-reactivate-01 {
    background-image: url('images/reactivate/reactivate-parallax-01.webp');
  }

  .parallax-bg-reactivate-02 {
    background-image: url('images/reactivate/reactivate-parallax-02.webp');
  }

  .parallax-bg-rescue-diver-01 {
    background-image: url('images/rescue/rescue-parallax-01.webp');
  }

  .parallax-bg-rescue-diver-02 {
    background-image: url('images/rescue/rescue-parallax-02.webp');
  }

  .parallax-bg-scuba-diver-01 {
    background-image: url('images/scuba-diver/scuba-diver-parallax-01.webp');
  }

  .parallax-bg-scuba-diver-02 {
    background-image: url('images/scuba-diver/scuba-diver-parallax-02.webp');
  }

  .parallax-bg-emergency-first-response-01 {
    background-image: url('images/emergency-first-response/emergency-first-response-parallax-01.webp');
  }

  .parallax-bg-emergency-first-response-02 {
    background-image: url('images/emergency-first-response/emergency-first-response-parallax-02.webp');
  }

  .p-white-margin-top {
    color: #fff;
    margin-top: 1.2em;
  }

  .section-info-margin-top {
    margin-top: 2.5em;
  }



  .reserva-block {
    width: 100%;
    margin-top: 2.5em;
  }

  .reserva-block p {
    margin-bottom: 1.2em;
  }

  .contact-info {
    list-style: none;
    padding: 0;
    max-width: 400px;
    margin: 0;
    font-size: 1.1rem;
  }

  .contact-info li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2em;
  }

  .contact-info a {
    color: inherit;
    text-decoration: underline;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .contact-info span {
    display: flex;
    align-items: center;
  }

  .contacto-form-margin-top {
    margin-top: 2.5em;
  }

  .svg-margin-right {
    margin-right: 8px;
  }

  /* Estilos para la página de mantenimiento */
  .maintenance-emoji {
    font-size: 2rem;
  }

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

  .maintenance-p-margin {
    margin-bottom: 1rem;
    opacity: 0.8;
    text-align: center;
  }

  .maintenance-p-center {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
    font-style: italic;
  }

  .maintenance-p-small {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-top: 2rem;
    text-align: center;
  }
  
  .parallax-bg-profundo-01 {
    background-image: url('images/profundo/profundo-parallax-01.webp');
  }
  .parallax-bg-profundo-02 {
    background-image: url('images/profundo/profundo-parallax-02.webp');
  }
  
  /* Enlaces blancos en pasos-curso */
  #pasos-curso a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.2s;
  }
  #pasos-curso a:hover, #pasos-curso a:focus {
    color: #00d9e5;
  }
  
  /* Tarjetas de precios de inmersiones */
  .precios-inmersiones-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2.5rem 0 0 0;
  }
  @media (max-width: 900px) {
    .precios-inmersiones-grid {
      grid-template-columns: 1fr;
    }
  }
  .precios-inmersion-card {
    background: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    padding: 2.5rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 220px;
    transition: box-shadow 0.2s, transform 0.2s;
    border: 2px solid #eaf3fa;
    position: relative;
  }
  .precios-inmersion-card:hover {
    box-shadow: 0 8px 32px rgba(0,217,229,0.13);
    transform: translateY(-4px) scale(1.02);
    border-color: #00d9e5;
  }
  .precios-inmersion-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.7em;
    color: #0066cc;
  }
  .precios-inmersion-card p {
    font-size: 1.08rem;
    color: #222;
    margin-bottom: 1.2em;
  }
  .precios-inmersion-card .course-price {
    font-size: 2.1rem;
    font-weight: 800;
    color: #00d9e5;
    margin-top: auto;
    letter-spacing: -1px;
  }

  .precios-inmersion-card--nocturna {
    background: #101c2c !important;
    border-color: #22304a !important;
  }
  .precios-inmersion-card--nocturna h3,
  .precios-inmersion-card--nocturna p,
  .precios-inmersion-card--nocturna .course-price {
    color: #fff !important;
  }
  .precios-inmersion-card--nocturna .course-price {
    color: #00d9e5 !important;
  }
  .precios-inmersion-card--nocturna:hover {
    box-shadow: 0 8px 32px rgba(0,217,229,0.18) !important;
    border-color: #00d9e5 !important;
  }
  
  /* Tarjetas nocturnas de inmersiones */
  .precios-inmersiones-grid .precios-inmersion-card.precios-inmersion-card--nocturna {
    background: #101c2c;
    border-color: #22304a;
  }
  .precios-inmersiones-grid .precios-inmersion-card.precios-inmersion-card--nocturna h3,
  .precios-inmersiones-grid .precios-inmersion-card.precios-inmersion-card--nocturna p {
    color: #fff;
  }
  .precios-inmersiones-grid .precios-inmersion-card.precios-inmersion-card--nocturna .course-price {
    color: #00d9e5;
  }
  .precios-inmersiones-grid .precios-inmersion-card.precios-inmersion-card--nocturna:hover {
    box-shadow: 0 8px 32px rgba(0,217,229,0.18);
    border-color: #00d9e5;
  }
  
  /* Clases para centrar secciones */
  .opiniones-centradas {
    text-align: center;
    margin-top: 3rem;
  }

  .opiniones-centradas h2 {
    text-align: center;
    margin-bottom: 2rem;
  }

  .opiniones-centradas .btn-google {
    display: inline-block;
    margin: 0 auto 2rem auto;
  }

  .deja-opinion-centrado {
    text-align: center;
    padding: 3rem 0;
  }

  .deja-opinion-centrado h2 {
    text-align: center;
    margin-bottom: 1rem;
  }

  .deja-opinion-centrado p {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .deja-opinion-centrado .btn {
    display: inline-block;
    margin: 0 auto;
  }
  
  .parallax-bg-profundo-02 {
    background-image: url('images/profundo/profundo-parallax-02.webp');
  }
  
  .parallax-bg-index-02 {
    background-image: url('images/backgrounds/parallax-index-02.webp');
  }
  
  /* Utilidades para estilos inline migrados */
  .text-center { text-align: center !important; }
  .font-2rem { font-size: 2rem !important; }
  .font-09rem { font-size: 0.9rem !important; }
  .opacity-08 { opacity: 0.8 !important; }
  .opacity-06 { opacity: 0.6 !important; }
  .mt-1rem { margin-top: 1rem !important; }
  .mt-15rem { margin-top: 1.5rem !important; }
  .mt-2rem { margin-top: 2rem !important; }
  .mb-1rem { margin-bottom: 1rem !important; }
  .mb-22rem { margin-bottom: 2.2rem !important; }
  .mb-2rem { margin-bottom: 2rem !important; }
  .mb-05rem { margin-bottom: 0.5rem !important; }
  .mr-25em { margin-right: 2.5em !important; }
  .ml-03em { margin-left: 0.3em !important; }
  .gap-08em { gap: 0.8em !important; }
  .flex { display: flex !important; }
  .align-center { align-items: center !important; }
  .justify-center { justify-content: center !important; }
  .flex-col { flex-direction: column !important; }
  .flex-row { flex-direction: row !important; }
  .color-inherit { color: inherit !important; }
  .text-underline { text-decoration: underline !important; }
  .text-none { text-decoration: none !important; }
  .bg-cover { background-size: cover !important; }
  .bg-center { background-position: center !important; }
  .bg-fixed { background-attachment: fixed !important; }
  .bg-no-repeat { background-repeat: no-repeat !important; }
  .object-cover { object-fit: cover !important; }
  
  /* Modal Bautismo Video */
  #bautismo-video-modal {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.7);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
  }
  #bautismo-video-modal .modal-content {
    position: relative;
    background: #111;
    border-radius: 12px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.25);
    padding: 0;
    width: 70vw; max-width: 900px;
    height: 40vw; max-height: 510px;
    display: flex; align-items: center; justify-content: center;
  }
  #bautismo-video-modal iframe {
    width: 100%; height: 100%; border-radius: 12px;
  }
  #bautismo-video-modal .close-btn {
    position: absolute; top: 10px; right: 16px;
    background: #fff; color: #008cba; border: none;
    border-radius: 50%; width: 36px; height: 36px;
    font-size: 1.7em; font-weight: bold;
    cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, color 0.2s;
  }
  #bautismo-video-modal .close-btn:hover {
    background: #008cba; color: #fff;
  }
  
  /* Fondo negro para la tarjeta de buceo nocturno */
  .course-card--nocturno {
    background: #101c2c !important;
    color: #fff !important;
  }
  .course-card--nocturno h3,
  .course-card--nocturno p,
  .course-card--nocturno .course-price {
    color: #fff !important;
  }
  .course-card--nocturno .course-price {
    color: #00d9e5 !important;
  }
  
  /* --- MENÚ HAMBURGUESA Y RESPONSIVE --- */
  .menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 200;
  }
  .menu-toggle span {
    display: block;
    width: 28px;
    height: 4px;
    margin: 4px 0;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
  }
  @media (max-width: 767px) {
    .menu-toggle {
      display: flex;
    }
    .main-menu {
      position: fixed;
      top: 60px;
      left: 0;
      width: 100vw;
      max-width: 100vw;
      height: 0;
      overflow: hidden;
      background: #0066cc;
      box-shadow: 0 4px 16px rgba(0,0,0,0.12);
      z-index: 150;
      transition: height 0.3s;
      flex-direction: column;
    }
    .main-menu.open {
      height: 90vh;
      overflow-y: auto;
      padding-bottom: 2rem;
    }
    .main-menu ul {
      flex-direction: column;
      gap: 0;
      padding: 0;
    }
    .main-menu ul li {
      width: 100%;
    }
    .main-menu ul li a {
      padding: 1rem 1.5rem;
      font-size: 1.1rem;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .has-submenu > a::after {
      content: '▼';
      font-size: 0.7em;
      margin-left: 0.4em;
    }
    .has-submenu .submenu {
      display: none;
      background: #005a99;
      padding-left: 1.5rem;
      border-left: 2px solid #008cba;
    }
    .has-submenu.open > .submenu {
      display: block;
    }
    .submenu .has-submenu > a::after {
      content: '▶';
      font-size: 0.7em;
      margin-left: 0.4em;
    }
    .submenu .has-submenu.open > .submenu {
      display: block;
    }
    .submenu .submenu {
      padding-left: 1.2rem;
      background: #004a7a;
    }
    body.menu-open {
      overflow: hidden;
    }
  }
  /* --- FIN MENÚ HAMBURGUESA Y RESPONSIVE --- */
  
  @media (max-width: 1200px) {
    .hero-cursos {
      flex-direction: column;
      align-items: stretch;
      gap: 0.5rem;
      padding: 1.2rem 0.2rem 1.2rem 0.2rem;
      margin-top: 4.5rem;
    }
    .hero-cursos-img {
      max-width: 100vw;
      width: 100vw;
      justify-content: center;
      margin-bottom: 0.5rem;
    }
    .hero-cursos-img img {
      max-width: 100vw;
      width: 100vw;
      margin: 0;
      border-radius: 0;
    }
    .hero-cursos-content {
      align-items: center;
      text-align: center;
      width: 100vw;
      padding: 0 0.5rem;
    }
    .hero-cursos-content p {
      margin-right: 0;
      text-align: center;
    }
  }
  
  @media (max-width: 767px) {
    .main-menu ul {
      position: relative;
    }
    .has-submenu {
      position: relative;
    }
    /* Submenú (segundo nivel) pegado a la izquierda */
    .has-submenu .submenu {
      position: fixed;
      left: 0;
      top: 90px;
      height: calc(100vh - 90px);
      width: 60vw;
      min-width: 0;
      z-index: 300;
      background: #0f2d5c;
      box-shadow: 0 8px 24px rgba(0,0,0,0.18);
      border-left: none;
      padding: 0.5rem 0 0.5rem 0;
      display: none;
      overflow-y: auto;
    }
    .has-submenu.open > .submenu {
      display: block;
    }
    /* Sub-submenú (tercer nivel) a la derecha del submenú */
    .submenu .has-submenu {
      position: relative;
    }
    .submenu .has-submenu .submenu {
      position: fixed;
      left: 60vw;
      top: 90px;
      height: calc(100vh - 90px);
      width: 40vw;
      min-width: 0;
      background: #0f2d5c;
      box-shadow: 0 8px 24px rgba(0,0,0,0.18);
      display: none;
      z-index: 400;
      padding: 0.5rem 0 0.5rem 0.5rem;
      overflow-y: auto;
    }
    .submenu .has-submenu.open > .submenu {
      display: block;
    }
  }
  
  