:root {
    --color-primario: #282e3f;
    --color-secundario: #6d6e70;
    --color-secundario2:rgb(77, 78, 80)0;
    --color-texto: #cacacb;
    --color-texto-hover: #ffffff;
    --color-menu-mobile: #262626;
    --color-encabezado: #282e3f;
}


@font-face {
    font-family: 'Bebas Neue';
    src: url('../fonts/BebasNeue-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'LOBUKI';
    src: url('../fonts/Parisienne-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Barlow';
    src: url('../fonts/Barlow_Condensed/BarlowCondensed-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'LOBUKI2';
    src: url('../fonts/DancingScript-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
}

/* Global Styles */
body {
    font-family: 'MiFuente', sans-serif;   
    margin: 0;
    padding: 0;
}

/* Header Styles */
/* Estilos del header */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;  /* Correcto */
    top: 0; /* Fija en la parte superior */
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* Estilos generales del icono de menú */
.menu-icon {
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.info-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px; /* Espacio entre elementos */
    
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 9px; /* Espacio entre imagen y título */
}

.logo {
    height: 60px;
    width: auto;
}

.logo-title {
    letter-spacing: 1px;
    font-family: 'Barlow';
    font-size: 20px;
    font-weight: 700;
    color: var(--color-texto-hover);
    margin: 0;
    line-height: 1.2;
}

/* Estilos generales del logo */
.logo {
    display: block;
    max-width: 150px;
    height: auto;
}

/* Estilos responsivos para pantallas menores o iguales a 900px */
@media (max-width: 900px) {
    .logo-title {
        display: none;
    }
    img.logo{
        height:45px;
    }
    .header {
        display: flex;
        justify-content: center; /* Asegura que el logo esté centrado */
        position: relative;
    }
    
    .social-icons {
        display: none;
    }
    .legal-assistance {
        display: none;
    }
    .separator {
           display: none;
    }

    .menu-icon {
        position: absolute;
        left: 10px; /* Fija el menú en el lado izquierdo */
        top: 50%;
        transform: translateY(-50%);
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%); /* Centra el logo */
    }

}


.header-container {
    width: 100%;
    height: 92px;
    background-color: var(--color-primario);
    color: var(--color-texto-hover);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    box-sizing: border-box;
    position: relative;
    transition: height 0.3s ease;
    z-index: 1000; /* Asegura que el header esté sobre otros elementos */
}

.logo {
    height: 68px;
    max-width: 100%;
}

/* .social-icons {
    display: flex;
    gap: 10px;
} */

.legal-assistance {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-texto-hover);
    width: 90%;
}

.separator {
    font-size: 1.5rem;
    font-weight: 100;
    color: var(--color-texto-hover);
}
.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icons a img {
    height: 24px;
    transition: transform 0.3s ease;
}

.social-icons a img:hover {
    transform: scale(1.1);
}

/* Navigation Bar */
.menu-bar {
    position: fixed;
    top: 92px; /* Justo debajo del header-container */
    width: 100%;
    z-index: 999;
    height: 45px;
    background-color: var(--color-secundario);
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

nav ul li {
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: var(--color-texto);
    font-weight: bold;
    padding: 10px 15px;
    display: inline-block;
    transition: color 0.3s ease;
    font-size: 13px;
    font-weight: 500;
    position: relative;
}

nav ul li a:hover {
    color: var(--color-texto-hover);
}

/* Animación elegante: línea debajo de los enlaces */
nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: var(--color-texto-hover);
    transition: width 0.3s ease-in-out;
}

nav ul li a:hover::after {
    width: 100%;
}



/* Menú Responsivo */
.menu-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: var(--color-texto-hover);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu {
    position: fixed;
    left: 0;
    width: 100%;
    background-color: #191d29f0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    visibility: hidden;
    opacity: 0;
    z-index: 999;
    font-size: x-large;
}

.mobile-menu.active {
    visibility: visible;
    opacity: 1;
    /* max-height: 51px; */
    /* width: 50%;
    height: 280px; */
}

.mobile-menu ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    MARGIN-BOTTOM: 14PX;
    text-align: LEFT;
    width: 50%;
    width: 180px;
}

.mobile-menu ul li {
    margin: 10px 0;
}

.mobile-menu ul li a {
    color: var(--color-texto);
    font-size: 15px;
    text-decoration: none;
    /* font-weight: 500; */
    padding: 5px 25px;
    display: inline-block;
    transition: color 0.3s ease;
    width: max-content;
}

.mobile-menu ul li a:hover {
    color: var(--color-texto-hover);
}

/* Responsive Design */
@media (max-width: 900px) {
    .menu-bar {
        display: none;
    }

    .social-icons {
        display: none;
    }

    .menu-icon {
        display: block;
    }

    .header-container {
        height: 60px;
        position: relative;
        z-index: 1000; /* Asegura que el header esté sobre otros elementos */
    }
}

@media (min-width: 901px) {
    .mobile-menu {
        display: none !important;
    }
}


/* Línea fina debajo del menú */
.menu-divider {
    width: 90%;
    margin: 10px auto;
    border: 0;
    height: 1px;
    background-color: #ccc; /* Color gris claro */
}

/* Redes sociales debajo del menú responsivo */
.social-icons-responsive {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 10px 0;
    width: 100%;
}


.social-icons-responsive a img {
    width: 28px; /* Ajuste ligero en tamaño */
    height: auto;
    transition: transform 0.3s ease;
}

.social-icons-responsive a:hover img {
    transform: scale(1.1);
}

/* Asegurar alineación en móviles */
@media (max-width: 600px) {
    .social-icons-responsive {
        /* gap: 8px; */
        padding-top: 5px;
    }

    .social-icons-responsive a img {
        width: 24px;
    }
}

.menu-icon img {
    width: 30px;
    height: 30px;
    filter: invert(1); /* Invierte colores (blanco ↔ negro) */
    color: #ffffff;
}

.social-icons-responsive a img {
    width: 25px; /* Tamaño uniforme */
    height: 25px; /* Tamaño uniforme */
    object-fit: contain; /* Mantiene la proporción sin deformarse */
    transition: transform 0.3s ease;
}
.close-menu {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 15px;
    color: white;
    cursor: pointer;
    z-index: 1001;
}










/* ==========================
   CARRUSEL ESTRUCTURA
========================== */
.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-container {
    display: flex;
}


.slide {
    min-width: 100%;
    position: relative;
    opacity: 0;
    height: 100vh; /* Asegura que la slide tenga altura completa */

}

.slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    z-index: 2;
}



.slide img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

/* ==========================
   TEXTO EN CARRUSEL
========================== */
.carousel-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    color: white;
    text-align: center;
    width: 100%;
    max-width: 800px;

    /* Eliminar height 100% para evitar problemas de alineación */
    height: auto; /* Cambiado de 100% a auto */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.8s ease-in-out;
}

.slide.active .carousel-text {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.slide.active .carousel-text h1,
.slide.active .carousel-text h2,
.slide.active .carousel-text p,
.slide.active .carousel-text .whatsapp-btn {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

.slide.active .carousel-text h1 { animation-delay: 0.3s; }
.slide.active .carousel-text h2 { animation-delay: 0.6s; }
.slide.active .carousel-text p { animation-delay: 0.9s; }
.slide.active .carousel-text .whatsapp-btn { animation-delay: 1.2s; }

/* Títulos */
h2#typewriter-h2 {
    margin-top: 0px;
    font-family: 'Bebas Neue'; 
}
.carousel-text h1 {
    min-height: 70px;
    font-size: 80px;
    margin-bottom: 0px;
    font-family: 'Bebas Neue';
    letter-spacing: 5px; 

}

.carousel-text h2 {
    min-height: 100px;
    margin-bottom: 0;
    font-size: 77px;
    margin-top: 90px;
    font-family: 'Bebas Neue';
    letter-spacing: 6px;

}

/* Texto */
.carousel-text p {
    font-family: 'Barlow';
    font-size: 43px;
    font-weight: 500;
    margin-top: 20px;
}

/* ==========================
   BOTÓN WHATSAPP
========================== */
.whatsapp-btn {
    font-family: 'Barlow';
    /* font-size: xx-large; */
    display: inline-block;
    margin-top: 20px;
    /* padding: 12px 25px; */
    background-color: rgb(149 134 134 / 58%);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    /* transition: background 0.3s ease-in-out; */
    /* animation: pulse 2s infinite; */
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 10px 5px rgba(255, 255, 255, 0.2);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInDown {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Typewriter Effect */
@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    50% { border-color: transparent; }
}

.typewriter {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid white;
    width: 0;
    animation: typewriter 3s steps(30, end) forwards, blink 0.75s step-end infinite;
}

/* ==========================
   RESPONSIVE
========================== */
@media (max-width: 768px) {
    .carousel-text {
        width: 90%;
        padding: 10px;
    }

    .carousel-text h1 {
        font-size: 30px;
        min-height: 25px;
        margin-bottom: 5px;
    }

    .carousel-text h2 {
        font-size: 30px;
        min-height: 25px;
        margin-top: 0;
        margin-bottom: 20px;
    }

    .carousel-text p {
        font-size: 19px;
        margin-top: -10px;
    }

    .whatsapp-btn {
        padding: 10px 20px;
    }
}

/* ==========================
   OTROS ESTILOS
========================== */
.podcast {
    margin-bottom: 0;
}

h2.podcast1 {
    margin-bottom: 0;
}


/* SERVICIOS JURIDICOS */
.servicios-juridicos {
    background-color: #f9f9f9;
    text-align: center;
    padding: 40px;
}

.areas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    font-family: 'Barlow';
}

.area {
    background: white;
    border: 1px solid #ddd;
    padding: 15px;
    width: calc(33.333% - 20px); /* 3 columnas en pantallas grandes */
    max-width: 250px;
    text-align: left;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 10px;
}

.area:hover {
    transform: scale(1.05);
}

.icono {
    width: 30px;
    height: 30px;
    flex-shrink: 0; /* Evita que el icono se reduzca */
}
.oculto {
    display: none;
}

#verMas {
    background: #d4af37;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 5px;
}

.servicio {
    font-family: 'Barlow';
    font-weight: 600;
    font-size: xxx-large;
    color: var(--color-encabezado);
}

span.oculto.txt {
    margin-top: -28px;
    margin-left: 40px;
}

span {
    color: var(--color-menu-mobile);
}

/* RESPONSIVE DESIGN */

/* DOS COLUMNAS EN PANTALLAS DE 664px O MENOS */
@media (max-width: 664px) {
    .servicio {
    font-size: xx-large;
    }
    .areas {
        flex-direction: column;
        align-items: center;
    }

    .area {
        width: 100%;
        /* text-align: center; */
        /* flex-direction: column;
        justify-content: center; */
        align-items: center;
        padding: 15px;
        gap: 10px;
    }


    .area span {
        display: block;
    }

}

@media (max-width: 420px) {
  .area.oculto {
    display: none;
  }

  .area.visible {
    display: flex;
  }
}








/* NOSOTROS */
.nosotros {
    background: url(../img/32.jpg) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh; /* Se cambió height: 100vh para evitar problemas en móviles */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    position: relative;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    padding: 40px 20px;
}
.nosotros::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(53, 47, 47, 0.6);
}
.container {
    max-width: 900px;
    width: 100%;
    position: relative;
    z-index: 1;
}
.titulo {
    /* text-align: center; */
    margin: 0 auto;
    display: block;
    font-family: 'Barlow';
    font-size: xxx-large;
}

.titulo, .descripcion {
    color: white;
    max-width: 800px;
    margin-bottom: 15px;
}

.descripcion {
    FONT-FAMILY: 'Barlow';
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0 auto;
    text-align: center;
    color: white;
    margin-bottom: revert;
}

.valores {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.mision, .vision {
    FONT-FAMILY: 'Barlow';
    width: 100%;
    max-width: 400px;
    background: #333539a3;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}
.mision h3, .vision h3 {
    font-size: xx-large;
    font-family: 'Barlow';
    margin-bottom: 10px;
    COLOR: #FFF;
}
.mision p, .vision p {
    line-height: 1.4;
    COLOR: #FFF;
    FONT-SIZE: large;
}
@media (max-width: 664px) {

.descripcion {
    font-size: 1.1rem;
    line-height: 1.2;
}
.mision p, .vision p {
    line-height: 1.2;
}
.mision, .vision {
    padding: 1px;
    border-radius: 5px;
}
.titulo {
    font-size: xx-large;
}
.mision h3, .vision h3 {
    font-size: x-large;
}

}

/* UBICACION */
.seccion-legal {
    padding: 1.5rem 1.5rem 2rem 1.5rem; /* Menos padding arriba, un poco más abajo */
    background-color: #282e3f;
    text-align: center;
    color: #f1f1f1;
    font-family: 'Barlow', sans-serif;
  }
  
  .legal-titulo {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #ffffff;
  }
  
  .legal-subtitulo {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: #dcdcdc;
  }
  
  .legal-direccion {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #b0b0b0;
  }
  
  /* Mapa con estilo elegante */
  .mapa-container {
    position: relative;
    width: 100%;
    max-width: 60rem;
    height: 19rem;
    margin: 0 auto 2.5rem auto;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
  }
  
  .mapa-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
  }
  
  /* Botón limpio y elegante */
  .btn-contacto {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    background: #d4af37;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    FONT-FAMILY: ARIAL;
  }


/* ESTILO BASE para pantallas grandes (4 columnas fijas) */
.seccion-estadisticas {
    display: flex;
    justify-content: space-between;
    background-color: #282e3f;
    padding: 1rem 1rem;
    text-align: center;
    color: #ffffff;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
  }
  .seccion-estadisticas::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }
  
  .estadistica {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0.5rem;
    box-sizing: border-box;
  }
  
  /* Ícono y texto compactos */
  .icono-estadistica {
    width: 2rem;
    height: auto;
    margin-bottom: -0.9rem;
    filter: invert(100%);
  }
  
  .texto-numero {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0;
    color: #ffffff;
  }
  
  .texto-descripcion {
    font-size: 0.75rem;
    color: #cccccc;
    margin: 0;
  }
  
  /* MEDIA QUERY para pantallas menores a 900px: scroll horizontal */
  @media (max-width: 900px) {
    .seccion-estadisticas {
      overflow-x: auto;
      justify-content: flex-start;
      flex-wrap: nowrap;
    }
  
    .estadistica {
      flex: 0 0 200px;
      max-width: none;
      scroll-snap-align: start;
    }
  }
  @media (max-width: 420px) {
    .btn-contacto {
        font-size: 13.33px;
    }
    .seccion-estadisticas {
      padding: 0.5rem;
    }
  
    .estadistica {
      flex: 0 0 160px; /* menos ancho por estadística */
      padding: 0.3rem;
    }
  
    .icono-estadistica {
      width: 1.5rem;
      margin-bottom: -0.6rem;
    }
  
    .texto-numero {
      font-size: 1rem;
    }
  
    .texto-descripcion {
      font-size: 0.65rem;
    }
  }
    

/* EQUIPO */
.team-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.team-title {
    font-family: 'Barlow';
    font-size: 32px;
    margin-bottom: 50px;
    font-weight: 700;
    color: var(--color-encabezado);
    font-size: xxx-large;
}

.team-divider {
    width: 60%;
    height: 3px;
    margin: 60px auto;
    background: linear-gradient(to right, transparent, #c9b037, transparent);
    opacity: 0.7;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.team-divider::before {
    content: "";
    position: absolute;
    top: 0;
    left: -20%;
    width: 60px;
    height: 100%;
    background: rgba(201, 176, 55, 0.3);
    filter: blur(5px);
    animation: glowing 10s ease-in-out infinite;
}

@keyframes glowing {
    0% { left: -20%; opacity: 0.1; }
    50% { left: 50%; opacity: 0.4; }
    100% { left: 120%; opacity: 0.1; }
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.team-member {
    font-family: 'MiFuente', sans-serif;
    max-width: 280px;
    padding: 25px;
    text-align: center;
    background: #fffdf9;
    border-radius: 15px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05), 0 6px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.team-member::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(270deg, #c9b037, transparent, #c9b037);
    background-size: 300% 300%;
    animation: glowing-border 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.team-member > * {
    position: relative;
    z-index: 1;
}

.team-member:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(201, 176, 55, 0.1), 0 8px 20px rgba(0, 0, 0, 0.04);
}

.team-member:hover::before {
    opacity: 1;
}

.team-member.principal {
    background: #f5f3ed;
}

.team-member img {
    width: 120px;
    height: 120px;
    margin-bottom: 15px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #c9b037;
}

.team-member h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2d2d2d;
}

.team-member p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #666;
}

@media (max-width: 768px) {
    .team-container {
        flex-direction: column;
        align-items: center;
    }
    .team-title {
        font-size: xx-large;
    }
}

@keyframes glowing-border {
    0% { background-position: -200% 0; }
    50% { background-position: 100% 0; }
    100% { background-position: 200% 0; }
}




/* FOOTER */
.footer {
    background: var(--color-encabezado);
    color: var(--color-texto);
    padding: 50px 20px;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    gap: 20px;
}

.footer-section {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    padding: 10px;
}

.footer-section h3 {
    font-family: 'Barlow';;
    margin-bottom: 12px;
    font-size: 20px;
    color: #d4af37; /* Dorado elegante */
    text-transform: uppercase;
    font-weight: bold;
}

.footer-section p {
    font-size: 16px;
    opacity: 0.8;
    line-height: 1.5;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 8px 0;
}

.footer-section ul li a {
    color: var(--color-texto-footer);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--color-enlaces-footer);
    transform: translateX(5px);
}

/* Redes sociales */
.social-iconsS {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.social-iconsS a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-iconsS a img {
    height: 26px;
    filter: brightness(0.9);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-iconsS a:hover img {
    transform: scale(1.2);
    filter: brightness(1.2);
}

/* Línea final del footer */
.footer-bottom {
    margin-top: 30px;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 12px;
    opacity: 0.8;
}

.map-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Relación 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 10px; /* opcional */
  }
  
  .map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  

/* RESPONSIVE: Ajustes para pantallas más pequeñas */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .social-iconsS {
        gap: 15px;
    }
}

/* Ajuste para centrar "Ubícanos" en el footer */
.footer-section.center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.map-container iframe {
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}


/* Ajuste responsivo del mapa */
@media (max-width: 768px) {
    .map-container iframe {
        height: 200px;
    }
}

.lobuki-font {
    font-family: 'LOBUKI2';
    color: #cacacb;
}





/* Botón de WhatsApp flotante */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 64px;
    height: 64px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
    text-decoration: none;
    animation: pop-in 0.4s ease-out;
}

.whatsapp-button:hover {
    transform: scale(1.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.whatsapp-button img {
    width: 36px;
    height: 36px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s;
}

/* Efecto de aparición */
@keyframes pop-in {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive: Dispositivos pequeños */
@media (max-width: 768px) {
    .whatsapp-button {
        width: 54px;
        height: 54px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-button img {
        width: 30px;
        height: 30px;
    }
}



/* SECCIÓN PODCAST CON IMAGEN FIJA */
.podcast {
    position: relative;
    background: url(../img/23.jpg) no-repeat center center / cover;
    min-height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #f9f6f6;
    padding: 0;
    background-attachment: scroll;
    
}

.contenido-podcast {
    width: 80%;
    max-width: 900px;
    /* background: rgba(40, 39, 39, 0.44); */
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

/* Título */
.podcast h2 {
    font-size: xxx-large;
    letter-spacing: 2px;
    font-family: 'Barlow';
    margin-bottom: 16px;
    font-weight: 700;
    color: var(--color-texto-hover);
}

/* Párrafos */
.podcast p {
    FONT-FAMILY: 'Barlow';
    font-size: 1.2rem;
    max-width: 750px;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #fff;
    font-weight: 500;
}

/* Botón elegante */
.btn-podcast {
    FONT-FAMILY: ARIAL;
    font-weight: 600;
    color: var(--color-texto-hover);
    background: #e20c0c;
    padding: 9px 28px;
    font-size: 16px;
    text-decoration: none;
    border: 3px solid #e20c0c;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-podcast:hover {
    background: #e20c0c;
    color: var(--color-texto-hover);
    transform: scale(1.05);
    border-color: #e20c0c;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .podcast {
        padding: 20px 10px;
    }

    .contenido-podcast {
        width: 100%;
        padding: 30px 20px;
        border-radius: 0;
    }

    .podcast h2 {
        font-size: xx-large;
        margin-bottom: 12px;
    }

    .podcast p {
        font-size: 18px;
        padding: 0 10px;
        LINE-HEIGHT: 1.2;
    }

    .btn-podcast {
        font-size: 14px;
        padding: 10px 20px;
        width: 100%;
        max-width: 250px;
    }
    .podcast {
        background: url(../img/33.jpg) no-repeat center center / cover; 
    }
}

@media (max-width: 480px) {

    .podcast h2 {
        font-size: xx-large;
    }

    .podcast p {
        font-size: 18px;
    }

    .btn-podcast {
        font-size: 13px;
        padding: 10px .2PX;
    }
}


/* GALERIA */
.galeria {
    padding: clamp(1rem, 5vw, 4rem);
    background-color: #f9f9f9;
    text-align: center;
  }
  
  .galeria-titulo {
    font-size: clamp(1.5rem, 4vw, 3rem);
    margin-bottom: clamp(1rem, 3vw, 2rem);
    font-family: 'Barlow';
    font-size: xxx-large;
    font-weight: 700;
    color: var(--color-encabezado);
  }
  
  .galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Fuerza 3 columnas */
    gap: clamp(1rem, 2.5vw, 2rem);
    justify-items: center;
  }
  
  .galeria-item {
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100%;
    /* Se eliminan transformaciones */
  }
  
  .galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  

  
  /* Lightbox */
  .lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    padding: 1rem;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
  }
  
  .lightbox-content {
    max-width: 90%;
    max-height: 80%;
    margin: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  
  .lightbox .close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
  }
  
  /* Botón Ver Más */
  .ver-mas-btn {
    border-radius: 5px;
    display: inline-block;
    margin-top: 2rem;
    padding: 10px 20px;
    background-color: #d4af37;
    color: white;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 13.3px;
    font-family: Arial;
  }
  
  .galeria-item.horizontal {
    grid-column: 1 / -1;
  }

  @media (max-width: 480px) {

    .galeria-titulo {
        font-size: xx-large;
    }
}