*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    font-family: "Lexend", sans-serif;
}
html{
    background: #152137;
}
body{
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    
}
@font-face{
    font-family: dklong;
    src: url(../font/DKLongreach.otf);
}
@font-face{
    font-family: todayshop;
    src: url(../font/TodaySHOP-Bold.otf);
}
.wrap{
    width: 90%;
    margin: 0 auto;
}
figure img{
    object-fit: cover;
}
.subtitle{
    font-size: 1.1rem;
    line-height: 1.6;
}
/* Ocultar enlaces de "Anterior" y "Siguiente" si se generan, aunque es mejor controlarlo desde PHP */
.nav-links .nav-previous,
.nav-links .nav-next,
.nav-links .next,
.nav-links .prev {
display: none;
}
.navigation.pagination{
    justify-content: center;
}
.page-numbers {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid white;
    border-radius: 50%;
    background-color: transparent;
    color: white;
    font-weight: bold;
    text-decoration: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}
.page-numbers.current, .page-numbers.current:hover,
.page-numbers:hover {
    background-color: #2F5C6E;
    color: white;
}
/* Hero Banner Interiores (Reutilizable) */
.hero-banner {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
}

.hero-banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 0;
}

.hero-banner-content .wrapper {
    width: 85%;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-banner-content .wrapper .title,
.hero-banner-content .wrapper .subtitle {
    max-width: 60%;
}

.hero-banner-content .title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-banner-content .subtitle {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 300;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 500px;
}

.hero-slide {
    position: relative;
    height: 90vh !important;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 0;
}

.hero-content .wrapper {
    padding: 0 20px;
}

.hero-content .title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 470px;
}

.hero-content .subtitle {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 470px;
}

.hero-button {
    display: inline-block;
    padding: 10px 40px;
    background-color: #253E66;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(50, 115, 220, 0.3);
    width: 100%;
    max-width: 300px;
    text-align: center;
}

.hero-button:hover {
    background-color: #2366d1;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(50, 115, 220, 0.4);
    color: #ffffff;
}
.hero-button:hover a {
    color: #ffffff;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.hero-scroll i {
    font-size: 2rem;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid #ffffff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-scroll i:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Slick Slider Custom Arrows */
.hero-slider .slick-prev,
.hero-slider .slick-next {
    width: 50px;
    height: 50px;
    z-index: 10;
    background-color: #1e3a5f;
    border-radius: 50%;
    transition: all 0.3s ease;
    top: auto;
    bottom: 40px;
    transform: none;
}

.hero-slider .slick-prev:hover,
.hero-slider .slick-next:hover {
    background-color: #2c4e7a;
}

.hero-slider .slick-prev {
    left: auto;
    right: 120px;
}

.hero-slider .slick-next {
    right: 50px;
}

.hero-slider .slick-prev:before,
.hero-slider .slick-next:before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 18px;
    color: #ffffff;
}

.hero-slider .slick-prev:before {
    content: '\f053';
}

.hero-slider .slick-next:before {
    content: '\f054';
}

/* Slick Dots */
.hero-slider .slick-dots {
    bottom: 50px;
    left: 8%;
    right: auto;
    width: auto;
    text-align: left;
    z-index: 10;
}

.hero-slider .slick-dots li {
    margin: 0 4px;
    padding-right: 15px;
    width: 60px;
}

.hero-slider .slick-dots li button {
    width: 50px;
    height: 15px;
    padding: 0;
    border: 1px solid #ffffff;
    border-radius: 5px;
}

.hero-slider .slick-dots li button:before {
    content: '';
    width: 50px;
    height: 15px;
    opacity: 0.3;
    transition: all 0.3s ease;
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #ffffff;
}

.hero-slider .slick-dots li.slick-active button:before {
    opacity: 1;
    background-color: #215564;
}

.hero-slider .slick-dots li button:hover:before {
    opacity: 0.6;
}

/* Content Section (Reutilizable para interiores) */
.content-section {
    padding: 80px 0;
}

.content-row {
    margin-bottom: 60px;
}

.content-row:last-child {
    margin-bottom: 0;
}

.content-text p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
}

.content-image {
    padding: 0 20px;
}

.content-image .image {
    border-radius: 8px;
    overflow: hidden;
}

/* Desktop: Alternar orden en filas impares */
/* .content-row:nth-child(even) .content-text {
    order: 1;
}

.content-row:nth-child(even) .content-image {
    order: 2;
} */

/* Servicios Home */
.servicios-home {
    background-color: #152137;
    padding: 60px 0;
}

.servicio-box {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    /* cursor: pointer; */
    transition: transform 0.3s ease;
}

.servicio-box:hover {
    transform: translateY(-5px);
}

.servicio-box .image {
    display: block;
}

.servicio-box .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.servicio-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    transition: background 0.3s ease;
}

.servicio-box:hover::before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.servicio-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    z-index: 2;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.servicio-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0;
    color: #ffffff;
}

.servicio-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #ffffff;
    opacity: 0.95;
    margin-bottom: 0;
}

/* Experiencia */
.experiencia {
    padding: 80px 0;
    background-color: #1a2942;
}

.stat-box {
    background-color: rgba(37, 62, 102, 0.7);
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-box:hover {
    background-color: rgba(37, 62, 102, 0.9);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Proyectos Destacados */
.proyectos-destacados {
    background-color: #152137;
    padding: 80px 0;
}

/* Testimonios y Empresas */
.testimonios-empresas {
    padding: 80px 0;
    background-color: #152137;
}

.testimonios-slider{
    background-color: #141D2E;
}
.testimonio-item {
    padding: 0 20px;
}

.testimonio-content {
    background-color: #141D2E;
    padding: 40px;
    border-radius: 8px;
}

.testimonio-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.testimonio-rating {
    margin-bottom: 20px;
}

.testimonio-rating i {
    color: #3ca4c7;
    font-size: 1.2rem;
    margin-right: 5px;
}

.testimonio-content p {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.95;
    padding-bottom: 20px;
}

/* Testimonios Slider Dots */
.testimonios-slider .slick-dots {
    bottom: 10px;
}

.testimonios-slider .slick-dots li button:before {
    font-size: 12px;
    color: #ffffff;
    opacity: 0.5;
}

.testimonios-slider .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #3ca4c7;
}

.cliente-logo {
    padding: 20px;
    transition: transform 0.3s ease;
}

.cliente-logo:hover {
    transform: scale(1.1);
}

.cliente-logo img {
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.cliente-logo:hover img {
    opacity: 1;
}

/* Footer */
.footer-sitio {
    background-color: #0f172a;
    padding: 80px 0 20px;
}

.footer-sitio .logo img {
    max-width: 150px;
}

.footer-sitio .menu nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.footer-sitio .menu nav ul li a {
    color: #ffffff;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-sitio .menu nav ul li a:hover {
    color: #3ca4c7;
}

.footer-sitio .rrss {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.footer-sitio .rrss a {
    color: #ffffff;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer-sitio .rrss a:hover {
    color: #3ca4c7;
}

.footer-copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Misión, Visión, Valores */
.mision-vision-valores {
    padding: 100px 0;
}

.mvv-box {
    padding: 40px 30px;
}

.mvv-icon {
    margin-bottom: 30px;
}

.mvv-icon i {
    font-size: 3.5rem;
    color: #3ca4c7;
}

.mvv-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.mvv-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
    font-weight: 300;
}

/* Fundadores */
.fundadores {
    padding: 100px 0;
}

.fundadores .section-header {
    margin-bottom: 60px;
}

.fundadores .section-header .title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
}

.fundador-box {
    padding: 20px;
}

.fundador-imagen {
    margin-bottom: 30px;
}

.fundador-imagen .image {
    border-radius: 10px;
    overflow: hidden;
}

.fundador-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fundador-nombre {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.fundador-descripcion {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
    font-weight: 300;
}

/* Content Gallery Slider */
.content-galery {
    margin-top: 40px;
}

.content-galery .galery-item {
    padding: 0 10px;
}

.content-galery .galery-item .image {
    border-radius: 10px;
    overflow: hidden;
}

/* Proyectos Grid Section (Reutilizable) */
.proyectos-grid-section {
    padding: 100px 0;
}

.proyecto-card {
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.proyecto-imagen {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.proyecto-imagen .image {
    overflow: hidden;
    border-radius: 12px;
}

.proyecto-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.proyecto-info {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: center;
    text-align: center;
}

.proyecto-titulo {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.proyecto-descripcion {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ffffff;
    opacity: 0.85;
    margin-bottom: 25px;
    flex-grow: 1;
    font-weight: 300;
}

.proyecto-boton {
    display: inline-block;
    padding: 12px 30px;
    background-color:#2F5C6E;
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
    width: 250px;
}

.proyecto-boton:hover {
    background-color: #2d8fb0;
    color: #ffffff;
}

/* Proyecto Detalle Boxes */
.proyecto-detalle-box {
    background-color: #1a2942;
    padding: 30px;
    border-radius: 8px;
    height: 100%;
}

.proyecto-detalle-titulo {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.proyecto-detalle-texto {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ffffff;
    opacity: 0.85;
}

.proyecto-galeria {
    margin-top: 20px;
}

.proyecto-galeria .galeria-item {
    padding: 0 10px;
}

.proyecto-galeria .image {
    border-radius: 8px;
    overflow: hidden;
}

.proyecto-galeria img {
    border-radius: 8px;
}
.interior-nota {
    width: 95%;
    max-width: 1024px;
    margin: 50px auto 0 auto;
}
.interior-nota hr {
    opacity: 20%;
}
.compartir-box {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    overflow: hidden;
}
.compartir-icon {
    padding: 5px 45px;
    display: flex;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.compartir-icon a {
    color: white;
    /* font-size: 1.5rem; */
    display: inline-block;
    width: 100%;
    transition: color 0.2s;
}
/* Interior Programa Styles */
.interior-nota .programa-header .title {
    color: #FFF;
    font-family: "Lexend Deca";
    font-style: normal;
    font-weight: 400;
    line-height: 60px;
}
.testimonio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.wpcf7-response-output{
    color: #ffffff;
}
/* ============================================
   RESPONSIVE STYLES - Mobile (max-width: 768px)
   ============================================ */
@media screen and (max-width: 768px) {
    .testimonio-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .testimonio-rating {
        margin-top: 0.5rem;
    }
    /* Hero Banner */
    .hero-banner {
        height: 60vh;
        min-height: 350px;
    }

    .hero-banner-content .wrapper {
        width: 90%;
    }

    .hero-banner-content .wrapper .title,
    .hero-banner-content .wrapper .subtitle {
        max-width: 100%;
    }

    .hero-banner-content .title {
        font-size: 2rem;
    }

    .hero-banner-content .subtitle {
        font-size: 1rem;
    }

    /* Hero Slider */
    .hero-slider,
    .hero-slide {
        height: 90vh !important;
        min-height: 450px;
    }

    .hero-content .title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .hero-content .subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .hero-slider .slick-prev,
    .hero-slider .slick-next {
        width: 45px;
        height: 45px;
        bottom: 80px;
    }

    .hero-slider .slick-prev {
        left: 50%;
        right: auto;
        transform: translateX(-60px);
    }

    .hero-slider .slick-next {
        right: auto;
        left: 50%;
        transform: translateX(15px);
    }

    .hero-slider .slick-prev:before,
    .hero-slider .slick-next:before {
        font-size: 16px;
    }

    .hero-slider .slick-dots {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        width: auto;
    }

    .hero-slider .slick-dots li {
        margin: 0 5px;
    }

    /* .hero-slider .slick-dots li button:before {
        width: 30px;
        height: 3px;
    } */

    /* Content Section */
    .content-section {
        padding: 60px 0;
    }

    .content-row {
        margin-bottom: 40px;
        flex-direction: column;
    }

    .content-row .content-image {
        order: 1 !important;
        margin-bottom: 30px;
    }

    .content-row .content-text {
        order: 2 !important;
    }

    .content-text p {
        font-size: 1rem;
    }

    .content-image {
        padding: 0;
    }

    /* Servicios */
    .servicio-box {
        margin-bottom: 20px;
    }

    .servicio-content {
        padding: 20px 15px;
    }

    .servicio-content h3 {
        font-size: 1.25rem;
    }

    .servicio-content p {
        font-size: 0.9rem;
    }

    /* Experiencia */
    .experiencia {
        padding: 60px 0;
    }

    .stat-box {
        padding: 30px 15px;
        margin-bottom: 15px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    /* Proyectos Destacados */
    .proyectos-destacados {
        padding: 60px 0;
    }

    /* Testimonios y Empresas */
    .testimonios-empresas {
        padding: 60px 0;
    }

    .testimonio-content {
        padding: 30px 20px;
    }

    .testimonio-content h3 {
        font-size: 1.25rem;
    }

    .testimonio-content p {
        font-size: 0.95rem;
    }

    .cliente-logo img {
        max-width: 140px;
    }

    /* Misión, Visión, Valores */
    .mision-vision-valores {
        padding: 60px 0;
    }

    .mvv-box {
        padding: 30px 15px;
        margin-bottom: 30px;
    }

    .mvv-icon i {
        font-size: 2.5rem;
    }

    .mvv-title {
        font-size: 1.5rem;
    }

    .mvv-text {
        font-size: 0.95rem;
    }

    /* Fundadores */
    .fundadores {
        padding: 60px 0;
    }

    .fundadores .section-header {
        margin-bottom: 40px;
    }

    .fundadores .section-header .title {
        font-size: 2rem;
    }

    .fundador-box {
        margin-bottom: 40px;
    }

    .fundador-nombre {
        font-size: 1.25rem;
    }

    .fundador-descripcion {
        font-size: 0.95rem;
    }

    /* Content Gallery */
    .content-galery .galery-item {
        padding: 0;
    }

    /* Proyectos Grid Section */
    .proyectos-grid-section {
        padding: 60px 0;
    }

    .proyecto-card {
        margin-bottom: 30px;
    }

    .proyecto-info {
        padding: 25px 20px;
    }

    .proyecto-titulo {
        font-size: 1.1rem;
    }

    .proyecto-descripcion {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .proyecto-boton {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    /* Proyecto Detalle */
    .proyecto-detalle-box {
        padding: 25px 20px;
        margin-bottom: 20px;
    }

    .proyecto-detalle-titulo {
        font-size: 0.95rem;
    }

    .proyecto-detalle-texto {
        font-size: 0.9rem;
    }

    .proyecto-galeria {
        margin-top: 15px;
    }

    .proyecto-galeria .galeria-item {
        padding: 0;
    }

    /* Footer */
    .footer-sitio .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-sitio .logo {
        margin-bottom: 30px;
    }

    .footer-sitio .menu {
        margin-bottom: 20px;
    }

    .footer-sitio .menu nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .footer-sitio .rrss {
        justify-content: center;
    }
    .compartir-icon {
        padding: 5px 25px;
    }
}

/* Formulario de Contacto */
.formulario-contacto .input {
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 1.2rem;
}

.formulario-contacto .input::placeholder,
.formulario-contacto .textarea::placeholder {
    color: #8A9FB5;
}

.formulario-contacto .input:focus,
.formulario-contacto .textarea:focus {
    border-color: #ffffff;
    box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25);
}

.formulario-contacto .textarea{
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
}

.formulario-contacto .button-enviar {
    background-color: #4A8FA8;
    color: white;
    font-weight: 500;
    border: none;
    width: 100%;
    cursor: pointer;
}

.formulario-contacto .button-enviar:hover {
    background-color: #3d7a8f;
}

.formulario-contacto select {
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
}

.formulario-contacto select.input,
.formulario-contacto textarea.input {
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    border-radius: 8px;
    padding: 1.2rem;
}
.select:not(.is-multiple):not(.is-loading)::after {
    border-color: #ffffff;
    right: 1.125em;
    z-index: 4;
}
.select:not(.is-multiple):not(.is-loading):hover::after {
    border-color: #ffffff;
}
.formulario-contacto select option {
    background-color: #1C2C44;
    color: #ffffff;
}

.formulario-contacto textarea.input::placeholder,
.formulario-contacto select.input::placeholder {
    color: #8A9FB5;
}

.formulario-contacto input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.formulario-contacto .select.is-fullwidth {
    width: 100%;
}

.formulario-contacto .select.is-fullwidth select {
    width: 100%;
}

/* Preguntas Frecuentes */
.preguntas-frecuentes .faq-item {
    margin-bottom: 20px;
}

.preguntas-frecuentes .faq-question {
    background-color: transparent;
    border: 1px solid #ffffff;
    border-radius: 30px;
    padding: 9px 15px;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.preguntas-frecuentes .faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.preguntas-frecuentes .faq-question span {
    font-weight: 400;
    font-size: 1rem;
}

.preguntas-frecuentes .faq-icon {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 35px;
    height: 35px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.preguntas-frecuentes .faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.preguntas-frecuentes .faq-answer {
    max-height: 0;
    overflow: hidden;
    /* transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s ease; */
    padding: 0 25px;
    opacity: 0;
}

.preguntas-frecuentes .faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px 25px;
    opacity: 1;
}

.preguntas-frecuentes .faq-answer p {
    color: #ffffff;
    line-height: 1.8;
    margin: 0;
}




