/* ===================== V2 STYLES (DEBUG MODE) ===================== */

.socio-v2 {
    font-family: 'Poppins', sans-serif;
    color: var(--Texto);
    overflow: hidden;
}

.socio-v2-inner {
    margin: 0 auto;
}

/* --- Hero --- */
.socio-v2-hero {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 80px 0 60px;
    position: relative;
}

.socio-v2-hero-text {
    flex: 1;
    min-width: 0;
}

.socio-v2-hero-text h1 {
    font-weight: 700;
    font-size: 40px;
    line-height: 70px;
    color: var(--Color-en-mov-2);
    margin-bottom: 40px;
}

.socio-v2-hero-text p {
    font-size: 20px;
    line-height: 40px;
    color: var(--Texto);
    margin-bottom: 8px;
}

.socio-v2-hero-text p b {
    font-weight: 600;
}

.socio-v2-hero-text .socio-v2-hero-cta-line {
    color: var(--Texto);
    font-size: 20px;
    line-height: 40px;
}

.socio-v2-guide-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px;
    border-radius: 5px;
    border: 1px solid var(--Color-Boton);
    background: #e8eefc;
    color: var(--Color-Boton);
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    margin-top: 40px;
    transition: .3s ease all;
}

.socio-v2-guide-btn:hover {
    opacity: 0.85;
    color: var(--Color-Boton);
}

.socio-v2-guide-btn img {
    width: 24px;
    height: 24px;
}

.socio-v2-hero-form {
    flex: 1;
    min-width: 0;
}

/* --- Section titles --- */
.socio-v2-section-title {
    font-weight: 600;
    font-size: 40px;
    line-height: 60px;
    color: var(--Texto); 
    text-align: center;
    margin-bottom: 40px;
    border-radius: 2px;
    padding: 8px 0;
}

.socio-v2-section-title span {
    color: var(--Color-en-mov-2);
}

.socio-v2-section-desc {
    font-size: 18px;
    line-height: 1.6;
    color: var(--Texto);
    text-align: center;
    margin: 0 auto 40px;
}

/* --- Somos el mejor aliado --- */
.socio-v2-aliado {
    padding: 80px 0;
}

.socio-v2-aliado-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.socio-v2-aliado-text {
    flex: 1;
    min-width: 0;
    font-size: 18px;
    line-height: 1.6;
    color: var(--Texto);
}

.socio-v2-aliado-text b {
    font-weight: 700;
}

.socio-v2-aliado-images {
    display: flex;
    gap: 25px;
    flex: 1;
}

.socio-v2-aliado-images img {
    width: 190px;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0px 0px 20px 0px var(--shadow-color-black-10);
}

/* --- El perfil que buscamos --- */
.socio-v2-perfil {
    padding: 60px 0;
}

.socio-v2-perfil-desc {
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
    margin: 0 auto;
    color: var(--Texto);
}

.socio-v2-perfil-desc b {
    font-weight: 600;
}

/* --- Socios Directores Carousel (team-card) --- */
.socio-v2-carousel {
    padding: 60px 0;
}

.socio-v2 .speaker-title {
    text-align: center;
    font-family: var(--bs-font-monospace);
    color: var(--color-corporate-blue);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.socio-v2 .team-card-container {
    width: 100%;
    display: flex;
    height: 640px;
    gap: 16px;
    justify-content: center;
    padding-bottom: 2rem;
    padding-top: 2rem;
}

.socio-v2 .team-card {
    flex: 0 0 130px;
    transition: 0.5s ease-in-out;
    cursor: context-menu;
    position: relative;
    overflow: hidden;
    background-blend-mode: luminosity;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 24px;
    background-color: var(--color-card-bg-e);
    box-shadow: 0px 0px 5px 0px var(--shadow-color);
    backdrop-filter: blur(20px);
    background-size: 250px;
}

.socio-v2 .team-card-content {
    font-size: 1.5rem;
    color: var(--white);
    display: flex;
    align-items: center;
    padding: 15px;
    opacity: 0;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
    transform: translateY(100%);
    transition: opacity 1.2s ease-out, transform .5s .2s;
    visibility: hidden;
}

.socio-v2 .team-card-content span {
    display: block;
    margin-top: 5px;
    font-size: 1.2rem;
}

.socio-v2 .team-card:hover {
    flex: 0 0 340px;
    box-shadow: 1px 3px 15px var(--color-corporate-blue);
    background-color: var(--transparent-black);
    background-repeat: no-repeat;
    background-position: top;
    background-position-y: -35px;
    background-size: 350px;
}

.socio-v2 .team-card:hover .team-card-content {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.socio-v2 .new-tutor-desc {
    color: var(--color-aicad-dark);
    text-align: center;
    font-family: var(--bs-font-monospace);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.4px;
}

.socio-v2 .new-tutor-desc strong {
    font-weight: 600;
}

.socio-v2 .author-link {
    color: var(--Color-Boton, var(--color-azul));
    text-align: center;
    font-family: var(--bs-font-monospace);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.4px;
    text-decoration-line: underline;
}

.socio-v2 .team-card.hovered {
    flex: 0 0 340px;
    box-shadow: 1px 3px 15px var(--color-corporate-blue);
    background-color: var(--transparent-black);
    background-repeat: no-repeat;
    background-position: top;
    background-position-y: -35px;
    background-size: 350px;
}

.socio-v2 .team-card.hovered .team-card-content {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.socio-v2 #authors-slider .slick-arrow {
    color: var(--Color-Boton);
    background-color: var(--Fondo-web);
    border: 3px solid var(--Fondo-web);
    font-size: 25px;
    position: absolute;
    width: 40px;
    height: 40px;
    z-index: 100;
    padding: 10px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 2px 2px var(--shadow-color-white);
}

.socio-v2 #authors-slider .slick-prev {
    left: -.5rem;
}

.socio-v2 #authors-slider .slick-prev:before {
    color: var(--Color-Boton);
    content: none;
}

.socio-v2 #authors-slider .slick-next {
    right: -.5rem;
}

.socio-v2 #authors-slider .slick-arrow .bi {
    border: 3px solid var(--Color-Boton);
    border-radius: 50%;
    padding: 1px;
}

.socio-v2 #authors-slider .slick-next:before {
    color: #0b0b0b;
    content: none;
}

.socio-v2 #authors-slider .slick-dots li button:before {
    font-family: 'slick', serif;
    font-size: 50px;
    line-height: 80%;
    color: var(--color-corporate-blue);
    position: absolute;
    top: 0;
    left: 0;
    content: '•';
    text-align: center;
    opacity: .25;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-bottom: 30px;
}

.socio-v2 #authors-slider .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--color-corporate-blue);
}

/* --- Beneficios --- */
.socio-v2-beneficios {
    padding: 60px 0;
}

.socio-v2-beneficios-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.socio-v2-benefit-card {
    width: 320px;
    height: 159px;
    border-radius: 10px;
    background: var(--white-3f);
    box-shadow: 0px 0px 20px 0px var(--shadow-color-black-10);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 24px 40px;
}

.socio-v2-benefit-card img {
    width: 40px;
    height: 40px;
}

.socio-v2-benefit-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--Texto);
    text-align: center;
    margin: 0;
    width: 240px;
}

/* --- Testimonios --- */
.socio-v2-testimonios {
    padding: 60px 0;
}

.socio-v2-testimonios-slider {
    max-width: 1000px;
    margin: 0 auto;
} 

.socio-v2-testimonio-slide {
    padding: 0 16px;
    outline: none;
}

.socio-v2-motto-card {
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.20);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(20px);
    display: flex;
    padding: 16px 24px 16px 16px;
    align-items: flex-start;
    gap: 16px;
}

.socio-v2-motto-quote {
    flex-shrink: 0;
}

.socio-v2-motto-quote-close {
    align-self: flex-end;
    margin-top: auto;
}

.socio-v2-motto-text {
    flex: 1;
    padding: 0 12px;
    text-align: center;
    color: var(--Texto);
    margin: 0;
}

.socio-v2-testimonios .slick-dots {
    bottom: -40px;
}

.socio-v2-testimonios .slick-dots li button:before {
    font-size: 12px;
    color: var(--color-corporate-blue);
    opacity: 0.25;
}

.socio-v2-testimonios .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--color-corporate-blue);
}

.socio-v2-testimonios .slick-prev,
.socio-v2-testimonios .slick-next {
    width: 40px;
    height: 40px;
    z-index: 10;
}

.socio-v2-testimonios .slick-prev:before,
.socio-v2-testimonios .slick-next:before {
    font-size: 24px;
    color: var(--color-corporate-blue);
    opacity: 0.6;
}

.socio-v2-testimonios .slick-prev:hover:before,
.socio-v2-testimonios .slick-next:hover:before {
    opacity: 1;
}

.socio-v2-testimonios .slick-prev {
    left: -50px;
}

.socio-v2-testimonios .slick-next {
    right: -50px;
}

/* --- Jornada de capacitaciones --- */
.socio-v2-jornada {
    padding: 60px 0;
}

.socio-v2-modules-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.socio-v2-module-card {
    width: 490px;
    border-radius: 10px;
    background: var(--white-3f);
    box-shadow: 0px 0px 20px 0px var(--shadow-color-black-10);
    padding: 24px;
}

.socio-v2-module-card h4 {
    font-weight: 600;
    font-size: 18px;
    color: var(--color-corporate-blue);
    margin: 0 0 12px;
    text-decoration: underline;
}

.socio-v2-module-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.socio-v2-module-card ul li {
    font-size: 16px;
    line-height: 2;
    color: var(--Texto);
    padding-left: 24px;
    position: relative;
}

.socio-v2-module-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-main-color-green);
}

/* --- Download CTA --- */
.socio-v2-download-cta {
    width: 490px;
    padding: 24px;
}

.socio-v2-download-cta h4 {
    font-weight: 700;
    font-size: 24px;
    color: var(--Color-en-mov-2);
    margin: 0 0 16px;
    font-style: italic;
}

.socio-v2-download-cta p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--Texto);
    margin: 0 0 24px;
}

.socio-v2-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid var(--Color-Boton);
    background: #e8eefc;
    color: var(--Color-Boton);
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: .3s ease all;
    margin-top: 24px;
}

.socio-v2-download-btn:hover {
    opacity: 0.85;
    color: var(--Color-Boton);
}

.socio-v2-download-btn img {
    width: 24px;
    height: 24px;
}

.socio-v2 .form-control,
.socio-v2 .form-select {
    background: var(--color-form-input-bg);
    border-radius: 2px;
    border: 1px solid var(--color-form-input-bg);
    font-size: 18px;
    color: var(--Texto);
}

.socio-v2 .form-control:focus,
.socio-v2 .form-select:focus {
    background: var(--color-form-input-bg);
    border-color: var(--text-main-color-green);
    box-shadow: none;
}

.socio-v2 .btn-solicitar {
    background: var(--Boton-primario-hover);
    border-color: var(--Color-Boton);
    color: var(--white);
}

.socio-v2 .btn-solicitar:hover {
    background: var(--Boton-primario-hover);
    border-color: var(--Color-Boton);
    color: var(--white);
    opacity: 0.9;
}

/* --- Background SVG decorations --- */
.socio-v2 .Ellipse1004:after {
    background-image: url('https://www.aicad.es/templates/default/landing-pages/conoce-aicad/images/Ellipse_1004.svg');
    background-position-x: right;
    right: 0;
    width: 975px;
    height: 975px;
    transform: translate(40%, -10%);
}

.socio-v2 .Ellipse1006:after {
    background-image: url('https://www.aicad.es/templates/default/landing-pages/conoce-aicad/images/Ellipse_1006.svg');
    background-position-x: left;
    left: 0;
    width: 700px;
    height: 700px;
    transform: translate(-22%, -17%);
}

.socio-v2 .Ellipse1007:after {
    background-image: url('https://www.aicad.es/templates/default/landing-pages/conoce-aicad/images/Ellipse_1007.svg');
    background-position-x: left;
    left: 0;
    width: 1100px;
    height: 1100px;
    transform: translate(-10%, -50%);
}

/* --- Responsive --- */
@media screen and (max-width: 992px) {
    .socio-v2-hero {
        flex-direction: column;
        padding: 40px 0;
    }

    .socio-v2-hero-text {
        width: 100%;
    }

    .socio-v2-hero-text h1 {
        font-size: 28px;
        line-height: 42px;
        text-align: center;
    }

    .socio-v2-hero-text p {
        font-size: 16px;
        line-height: 30px;
        text-align: center;
    }

    .socio-v2-hero-text .socio-v2-hero-cta-line {
        text-align: center;
        font-size: 16px;
        line-height: 30px;
    }

    .socio-v2-guide-btn {
        display: flex;
        justify-content: center;
        margin: 24px auto 0;
    }

    .socio-v2-hero-form {
        width: 100%;
    }

    .socio-v2-aliado-content {
        flex-direction: column;
    }

    .socio-v2-aliado-text {
        text-align: center;
    }

    .socio-v2-aliado-images {
        justify-content: center;
    }

    .socio-v2-aliado-images img {
        width: 30%;
        height: 240px;
    }

    .socio-v2-section-title {
        font-size: 28px;
        line-height: 42px;
    }

    .socio-v2 .team-card-container {
        overflow-x: auto;
        justify-content: unset;
    }

    .socio-v2-beneficios-grid {
        gap: 20px;
    }

    .socio-v2-benefit-card {
        width: 100%;
        max-width: 320px;
    }

    .socio-v2-modules-grid {
        gap: 20px;
    }

    .socio-v2-module-card {
        width: 100%;
    }

    .socio-v2-download-cta {
        width: 100%;
    }

    .socio-v2-testimonios-slider {
        max-width: 100%;
    }

    .socio-v2-motto-card {
        padding: 16px 20px;
        gap: 12px;
    }

    .socio-v2-motto-quote {
        width: 24px;
        height: 24px;
    }

    .socio-v2-motto-text {
        font-size: 14px;
    }

    .socio-v2-testimonios .slick-prev {
        left: -5px;
    }

    .socio-v2-testimonios .slick-next {
        right: -5px;
    }

    .socio-v2 .Ellipse1004:after,
    .socio-v2 .Ellipse1007:after {
        display: none;
    }

    .socio-v2 .Ellipse1006:after {
        width: 400px;
        height: 400px;
        transform: translate(-30%, -10%);
    }
}

/* ===================== END V2 STYLES ===================== */

.ac-item-card {
    border-radius: 10px;
    background: var(--shadow-color-dark);
    -webkit-box-shadow: 0px 0px 20px 0px var(--shadow-color-black-10);
    box-shadow: 0px 0px 20px 0px var(--shadow-color-black-10);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

.pink-bg-title {
    background: var(--Check-Tabs, linear-gradient(90deg, var(--pink-btn-gradient-pink) 20.63%, var(--pink-btn-gradient-blue) 46.47%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#Ellipse1009:after {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDc4IiBoZWlnaHQ9IjEwNzYiIHZpZXdCb3g9IjAgMCA0NzggMTA3NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBvcGFjaXR5PSIwLjUiIGN4PSI1MzgiIGN5PSI1MzgiIHI9IjUzOCIgdHJhbnNmb3JtPSJyb3RhdGUoOTAgNTM4IDUzOCkiIGZpbGw9InVybCgjcGFpbnQwX2xpbmVhcl8xNTc1XzExMTc1KSIvPgo8ZGVmcz4KPGxpbmVhckdyYWRpZW50IGlkPSJwYWludDBfbGluZWFyXzE1NzVfMTExNzUiIHgxPSIyNDAuOTY4IiB5MT0iNi4wNDc5NWUtMDYiIHgyPSI4MzMuMzIyIiB5Mj0iMTA3NiIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiPgo8c3RvcCBzdG9wLWNvbG9yPSIjQjhDRUZGIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iI0JDRkNEQSIvPgo8L2xpbmVhckdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=);
    background-position-x : right;
    right                 : 0;
    width                 : 1100px;
    height                : 1100px;
    -webkit-transform             : translate(20%, -80%);
    -ms-transform             : translate(20%, -80%);
    transform             : translate(20%, -80%);
}
.btn-solicitar {
    border-radius: 5px;
    border: 1px solid var(--Color-Boton);
    background: var(--Boton-primario-hover);
    box-shadow: 0px 4px 4px 0px var(--shadow-color-black-25);
    display: flex;
    padding: 16px 8px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    color: var(--Fondo-web);
    font-family: var(--bs-font-monospace);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 3.2px;
    transition: .7s ease all;
}

.btn-solicitar:hover {
    scale: 1.03;
    border: 1px solid var(--Color-Boton);
}


.banner-title {
    font-family: var(--bs-font-monospace);
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 70px;
    color: var(--Color-en-mov-2);
}


@media screen and (max-width: 768px) {
    .banner-title  {
        font-size: 28px;
        line-height: 50px;
    }
    .line-height-50 {
        line-height: 30px!important;
    }

    .card-sub-text-2 {
        text-align: center;
    }
   .row .my-lg-4 {
       text-align: center;
   }
    .my-lg-4 img {
        margin-left: auto;
        margin-right: auto;
    }
}
