﻿/* ========================================
    ELEMENTOS COMUNES - BANNER
======================================== */

.fda_banner {
    background-color: var(--fda-secondary);
    color: var(--fda-white);
    font-weight: 700;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px 12px 10px; 
    gap: 8px;
    text-align: center;
}

.fda_flash__minilogo_xs {
    width: 16px;
    height: 16px;
}

/* ========================================
    ELEMENTOS COMUNES - FOOTER
======================================== */

.fda_footer__content {
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    background-color: var(--fda-principal-white);
    margin: 32px auto;
 
    padding: 24px;
    gap: 24px;
}

.fda_footer__content hr {
    border: none;
    height: 1px;
    background-color: var(--fda-light-grey);
    margin: 0;
}

    .fda_footer__content .fda_text__small {
        color: var(--fda-grey);
    }

.footer_menu__secundario {
    display: flex;
    flex-flow: row wrap;
    gap: 20px;
    justify-content: flex-end;
}


.footer_menu__principal {
    display: flex;
    flex-flow: row wrap;
    gap: 48px;
    justify-content: flex-end;
}

.footer_menu__principal a {
    font-weight: 700;
}

.footer_menu__principal a:hover {
    color: var(--fda-principal);
}

.footer_menu, .footer_legales {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.footer_legales p {
    margin-top: 8px;
}

.footer_menu__secundario a {
    color: var(--fda-grey);
}

.footer_menu__secundario a:hover {
    color: var(--fda-secondary);
}

.footer_redes {
    display: flex;
    flex-flow: row nowrap;
    gap: 16px;
}

.social_footer {
    background: var(--fda-white);
}

.social_footer:hover {
    background: var(--fda-secondary);
}

.social_footer a {
    color: var(--fda-secondary);
}

.social_footer:hover a {
    color: var(--fda-white);
}

/* ========================================
    ELEMENTOS COMUNES - MENÚ PRINCIPAL
======================================== */

.fda_logo img {
    display: block;
    max-width: 140px;
}

header {
    padding: 0 16px;
    position: sticky;
    top: 10px;
    z-index: 40;
    background-color: transparent;
    will-change: transform;
    max-width: 1300px;
    margin: 0 auto;
}

.fda_menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 16px;

    transition: all 0.3s ease;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    will-change: padding, background-color, border-radius;
}

.fda_menu.reducido {
    padding: 16px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 200px;   
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.fda_menu__enlaces {
    display: flex;
    gap: 16px;
    justify-content: center;
    list-style-type: none;
}

.fda_menu__enlaces a {
    border-radius: 8px;
    color: var(--fda-secondary);
    display: inline-block;
    font-weight: 500;
    padding: 10px 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fda_menu__enlaces a:hover {
    background-color: var(--fda-principal-white);
}

.fda_menu.reducido .fda_menu__enlaces a:hover {
    background-color: var(--fda-white);
}

.fda_menu.reducido .fda_menu__enlaces .fda_dropdown.active a {
    background-color: var(--fda-white);
    color: var(--fda-secondary);
}

.fda_menu.reducido .fda_menu__enlaces .fda_dropdown.active a:hover {
    background-color: var(--fda-white);
    color: var(--fda-secondary);
}

.fda_menu__enlace--activo {
    background-color: var(--fda-principal-white);
    color: var(--fda-secondary);
    font-weight: normal;
}

.fda_header__dark .fda_menu.reducido {
    background-color: rgba(3, 1, 34, 0.8);
}

.fda_header__dark .fda_menu__enlaces a {
    color: var(--fda-white);
}

.fda_header__dark .fda_menu__enlaces a:hover {
    color: var(--fda-secondary);
}

.fda_header__dark .fda_header__button {
    background-color: var(--fda-white);
    color: var(--fda-secondary);
}

.fda_header__dark .fda_header__button img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
}

.fda_header__dark .fda_header__button:hover {
    background-color: var(--fda-secondary);
}

.fda_header__dark .fda_header__button:hover img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
}

.fda_header__dark .fda_dropdown__menu {
    background-color: var(--fda-white);
    border: 1px solid var(--fda-border-color);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.fda_header__dark .fda_dropdown__item {
    color: var(--fda-secondary) !important;
}

.fda_header__dark .fda_dropdown__item:hover {
    background-color: var(--fda-principal-white);
    color: var(--fda-secondary) !important;
}

.fda_header__dark .fda_menu__enlaces .fda_dropdown.active a {
    background-color: var(--fda-principal-white);
    color: var(--fda-secondary);
}

.fda_header__dark .fda_menu__enlaces .fda_dropdown.active a:hover {
    background-color: var(--fda-principal-white);
    color: var(--fda-secondary);
}


/* ========================================
    ELEMENTOS COMUNES - DROPDOWN MENU
======================================== */

.fda_dropdown {
    position: relative;
}

.fda_dropdown a {
    display: block;
}

.fda_menu__enlaces .fda_dropdown.active a {
    background-color: var(--fda-principal-white);
    color: var(--fda-secondary);
}

.fda_menu__enlaces .fda_dropdown.active a:hover {
    background-color: var(--fda-principal-white);
    color: var(--fda-secondary);
}

.fda_dropdown__menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 300px;
    background-color: var(--fda-white);
    border: 1px solid var(--fda-border-color);
    border-radius: 12px;
    padding: 4px 0;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.fda_dropdown:hover .fda_dropdown__menu,
.fda_dropdown.active .fda_dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fda_dropdown__item {
    display: block;
    padding: 12px 20px;
    color: var(--fda-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
    border-radius: 8px;
    margin: 4px 8px;
    background-color: transparent;
}

.fda_dropdown__item:hover {
    background-color: var(--fda-principal-white);
    color: var(--fda-secondary);
}

/* ========================================
    ELEMENTOS COMUNES - MENÚ HAMBURGUESA
======================================== */

.burger_menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    height: 17px;
    width: 30px;
    transition: all 0.3s ease;
}

.burger_menu span {
    display: block;
    background-color: var(--fda-secondary);
    height: 3px;
    width: 100%;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.fda_header__dark .burger_menu span {
    background-color: var(--fda-white);
}

.burger_menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger_menu.active span:nth-child(2) {
    opacity: 0;
}

.burger_menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

#boton_mini_conocenos {
    font-size: 1.5rem;
    background-color: var(--fda-white);
    color: var(--fda-secondary);
    display: none;
}

/* Ocultar el enlace "Contáctanos" del menú en desktop */
@media (min-width: 769px) {
    .fda_menu__enlaces li:last-child {
        display: none;
    }
}

/* Mostrar el enlace "Contáctanos" del menú solo en móvil */
@media (max-width: 768px) {
    .fda_menu__enlaces li:last-child {
        display: block;
    }
    
    /* Ocultar el botón "Contáctanos" de la derecha en móvil */
    #boton_conocenos_menu {
        display: none;
    }
}

/* ========================================
    PÁGINA INICIO - TEACHERS CAROUSEL
======================================== */

.teachers {
    background-image: url(../assets/images/fondocoding.jpg);
    background-size: cover;
    background-position: center;
    color: var(--fda-white);
    overflow: hidden;
}

.teachers .fda_section__two-columns {
    gap: 40px;
}

.teachers_carousel__container {
    margin-top: 40px;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.teachers .fda_title__descriptions {
    margin-top: 24px;
}

.teachers_carousel {
    display: flex;
    transition: transform 0.5s ease;
    gap: 40px;
}

.teachers_card {
    display: flex;
    width: 304px;
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex-shrink: 0;
    border-radius: 16px;
    border: 1px solid var(--fda-white);
    background: var(--White-grey, #F5F5F5);
    box-shadow: 0 1px 4px 0 rgba(8, 70, 72, 0.10), 0 0 2px 0 rgba(8, 70, 72, 0.20);
    transition: transform 0.3s ease;
}

.teachers_card__body {
    background: var(--fda-white);
    border-radius: 12px;
    border: 1px solid var(--fda-white);
    padding: 8px 12px 8px 12px;
    margin-bottom: 8px;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
}

.teachers_card__footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    flex-shrink: 0;
    width: 100%;
}

.fda_teachers__button {
    border: 1px solid var(--fda-grey30);
    padding: 8px 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--fda-white-grey);
}

    .fda_teachers__button:hover {
        background-color: var(--fda-secondary);
    }

.teachers_card__body p {
    color: var(--fda-code-color);
    text-align: left;
    font-family: "Fira Code", sans-serif;
    font-size: 14px;
    line-height: 170%;
    font-weight: 400;
}

.teachers_card__image {
    border-radius: 12px;
    align-self: stretch;
    flex-shrink: 0;
    height: 209px;
    position: relative;
    object-fit: cover;
}

.teachers_card:hover {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
}

.teachers_controls {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 14px;
    gap: 12px;
}

.teachers_controls button {
    background-color: transparent;
    color: var(--fda-white);
    border: 1px solid var(--fda-white);
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.teachers_controls button:hover {
    background-color: var(--fda-white);
    color: var(--fda-secondary);
}

.teachers_controls button:active {
    background-color: var(--fda-white);
    color: var(--fda-secondary);
}

.teachers_controls button:focus {
    background-color: transparent;
    color: var(--fda-white);
    outline: none;
}

.teachers_controls button:focus:hover {
    background-color: var(--fda-white);
    color: var(--fda-secondary);
}

.teachers_controls button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: var(--fda-light-grey);
    color: var(--fda-grey);
    border: none;
}

.teachers_controls button:disabled:hover {
    background-color: var(--fda-light-grey);
    color: var(--fda-grey);
}

.fda_circle__teachers__social {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--fda-white);
    background-color: var(--fda-secondary);
    cursor: pointer;
    margin-right: 5px;
    transition: background-color 0.3s ease;
}

    .fda_circle__teachers__social:hover {
        background-color: var(--fda-secondary);
    }

.teachers_gallery .fda_title__descriptions {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 32px;
    justify-content: center;
    align-content: center;
}

.teachers_gallery .fda_buttons__panel {
    justify-content: center;
}

.teachers_card__container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: var(--fda-white-grey);
    border-radius: 16px;
    border: 1px solid var(--fda-border-color);
    padding: 16px;
    box-shadow: var(--fda-shadow-box);
    gap: 16px;
}

    .teachers_card__container:hover {
        box-shadow: 0px 0px 4px rgba(0,0,0,0.6);
    }

.teachers_card__image__block {
    flex-shrink: 0;
    max-height: 255px;
}

.teachers_card__image {
    object-fit: cover;
    border-radius: 8px;
    width: 100%;
    height: auto;
    max-height: 250px;
}

.teachers_card__name {
    font-size: 1.0rem;
    font-weight: 700;
}

.teachers_card__info {
    display: flex;
    flex-direction: column;
    background-color: var(--fda-white);
    border: 1px solid var(--fda-border-color);
    border-radius: 8px;
    padding: 10px;
    flex-grow: 1;
    color: var(--fda-deep-grey);
    font-size: 0.8rem;
}

.teachers_card_social {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.teachers_card__container .fda_circle__social {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
}

/* ========================================
    PÁGINA INICIO - BENEFITS SECTION
======================================== */

.colorBack {
    color: #00abb0;
} 

.benefits_dark_background {
    background-image: url(../assets/images/fondocoding.jpg);
}

.benefits_section {
    padding: 100px 0px;
}

.fda_benefits__card, .fda_benefits__card_secondary {
    background-color: transparent;
    border-radius: 16px;
    padding: 16px 24px;
    width: 100%;
    transition: transform 0.2s ease-in-out;
    opacity: 0.2;
    color: #C3C6C9;
    display: flex;
    gap: 16px;
}

.fda_benefits__card__activo {
    transform: translateY(-5px);
    opacity: 1;
    padding: 12px;
    box-shadow: var(--fda-shadow-hover);
    border-bottom: 2px solid var(--fda-creamy);
    background-color: var(--fda-white);
    color: var(--fda-secondary);
}

[data-icon-color-theme="aqua"] .fda_benefits__card__activo {
    border-bottom: 3px solid var(--fda-aqua);
}

.benefits_text {
    display: none;
}

.benefits_text__visible {
    display: block;
}

.fda_benefits__card_secondary:hover {
    transform: translateY(-5px);
    opacity: 1;
    box-shadow: 0 -3px 0px var(--fda-secondary), 0px 0px 6px rgba(0, 0, 0, 0.4);
}

.fda_benefits__card_secondary:focus {
    transform: translateY(-5px);
    opacity: 1;
    box-shadow: 0 -3px 0px var(--fda-auxiliar-aqua), 0px 0px 6px rgba(0, 0, 0, 0.4);
}

.fda_benefits__card__icon {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 8px;
    align-items: flex-start;
}

.fda_benefits__card:not(.fda_benefits__card__activo) .fda_circle__primary {
    background-color: var(--fda-light-grey);
    color: var(--fda-grey);
}

.fda_benefits__card:not(.fda_benefits__card__activo) .fda_circle__primary i {
    color: var(--fda-grey);
}

.fda_benefits__card:not(.fda_benefits__card__activo) .fda_circle__aqua {
    background-color: var(--fda-light-grey);
    color: var(--fda-grey);
}

.fda_benefits__card:not(.fda_benefits__card__activo) .fda_circle__aqua i {
    color: var(--fda-grey);
}

.fda_benefits__card__activo .fda_circle__primary {
    background-color: var(--fda-principal);
    color: var(--fda-white);
}

.fda_benefits__card__activo .fda_circle__primary i {
    color: var(--fda-white);
}

.fda_benefits__card__activo .fda_circle__aqua {
    background-color: var(--fda-aqua);
    color: var(--fda-white);
}

.fda_benefits__card__activo .fda_circle__aqua i {
    color: var(--fda-white);
}

.fda_benefits__card:not(.fda_benefits__card__activo) .fda_circle__creamy {
    background-color: var(--fda-light-grey);
    color: var(--fda-grey);
}

.fda_benefits__card:not(.fda_benefits__card__activo) .fda_circle__creamy i {
    color: var(--fda-grey);
}

.fda_benefits__card__activo .fda_circle__creamy {
    background-color: var(--fda-creamy);
    color: var(--fda-white);
}

.fda_benefits__card__activo .fda_circle__creamy i {
    color: var(--fda-white);
}

.fda_benefits__card:not(.fda_benefits__card__activo) h3,
.fda_benefits__card:not(.fda_benefits__card__activo) h4,
.fda_benefits__card:not(.fda_benefits__card__activo) h5,
.fda_benefits__card:not(.fda_benefits__card__activo) h6,
.fda_benefits__card:not(.fda_benefits__card__activo) .fda_title3,
.fda_benefits__card:not(.fda_benefits__card__activo) .fda_title4,
.fda_benefits__card:not(.fda_benefits__card__activo) .fda_title5,
.fda_benefits__card:not(.fda_benefits__card__activo) .fda_title6 {
    color: var(--fda-light-grey);
}

.fda_benefits__card__content p {
    color: var(--fda-grey);
}

.fda_benefits_dark__backgroung {
    background-image: url(../assets/images/fondocoding.jpg);
    color: var(--fda-white);
}




/* ========================================
    PÁGINA CONÓCENOS - WINDOW BLOCK
======================================== */

.window_block {
    padding: 80px 0px;
}

.window_block_002 {
    padding: 0px 0px 88px 0px;
}

.fda_window__container {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--fda-shadow-box);
    border-radius: 16px;
    z-index: 10;
}

.window_block_002 .fda_window__container {
    width: 92%;
    margin: 0px auto;
}

.window_block_002 .fda_blue__container {
    padding: 300px 24px 40px 24px;
    margin-top: -270px;
    background-color: var(--fda-principal-white);
}

.fda_window__i i{
    margin-right: 12px;
}

.fda_window__header {
    background-color: #E9E9EA;
    width: 100%;
    padding: 6px 16px;
    border-radius: 16px 16px 0px 0px;
}

.fda_section_row_box {
    display: flex;
    gap: 12px;
    margin-top:24px;
    margin-left: 10px;
}

.fda_window__body {
    background-color: var(--fda-white);
    width: 100%;
    padding: 40px;
    border-radius: 0px 0px 16px 16px;
}

.fda_window__body img{
    height: 380px; 
}

.fda_window__footer {
    background-color: var(--fda-white);
    padding: 10px 20px;
    width: 100%;
    border-radius: 0px 0px 16px 16px;
}

.fda_window__withblock {
    max-width: 1000px;
    position: relative;
}

.inferior_block {
    border-radius: 20px;
    position: absolute;
    top: -15%;
    left: 10%;
    width: 80%;
    height: 130%;
    background-color: var(--fda-principal-white);
    z-index: 5;
}

.contact_preheader__block {
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 90%;
    background: var(--fda-principal-white);
    border-radius: 16px 0px 0px 16px;
    z-index: 1;
}

.contact_postheader__block {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 90%;
    background: var(--fda-principal-white);
    border-radius: 0px 16px 16px 0px;
    z-index: 1;
}

.window_preheader__block {
    margin: 0 auto;
    width: 90%;
    height: 30px;
    background: var(--fda-principal-white);
    border-radius: 16px 16px 0px 0px;
}

.window_postheader__block {
    margin: 0 auto;
    width: 90%;
    height: 30px;
    background: var(--fda-principal-white);
    border-radius: 0px 0px 16px 16px;
}

.infoblock_twocolumns {
    display: flex;
    flex-direction: row;
    gap: 12px;
}

.window_block .image_info__square {
    max-width: 220px;
    box-shadow: var(--fda-shadow-infoblock);
}

.fda_window__body li {
    margin-bottom: 12px
}

.circle_left_card {
    padding: 24px 16px 24px 16px;
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
    justify-content: flex-start;
    flex: 1;
    position: relative;
}

    .circle_left_card p {
        color: #5B646C;
    }

/* ========================================
    ELEMENTOS ESPECÍFICOS - TARJETAS DE INFORMACIÓN
======================================== */

/* ========================================
    ELEMENTOS ESPECÍFICOS - SELECTORES
======================================== */

/* ========================================
    ELEMENTOS ESPECÍFICOS - SECCIONES
======================================== */


.fda_breadcrums {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin: 24px 0px 24px 0px;
    align-items: center;
}

.fda_breadcrums ol {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.fda_breadcrums li {
    display: flex;
    align-items: center;
    gap: 16px;
}

.fda_breadcrums li:not(:last-child)::after {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--fda-grey);
    font-size: 0.75rem;
}

.fda_breadcrums a {
    margin: 0;
    font-size: 0.875rem;
    color: var(--fda-grey);
    text-decoration: none;
}

.fda_breadcrums a:hover {
    color: var(--fda-secondary);
    text-decoration: underline;
}

.fda_breadcrums span[aria-current="page"] {
    margin: 0;
    font-size: 1rem;
    color: var(--fda-secondary);
    font-weight: 700;
}

.fda_section__two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 76px;
    max-width: 1200px;
}

.fda_section__two-columns_without-padding {
    display: grid;
    grid-template-columns: 1fr 0fr;
    gap: 76px;
    max-width: 1200px;
}

.fda_selector__container {
    display: flex;
    gap: 8px;
    background-color: var(--fda-white-grey);
    border-radius: 50px;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 32px auto;
    width: fit-content;
}

.fda_selector__button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--fda-secondary);
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    background-color: transparent;
}

.fda_selector__button:hover {
    background-color: var(--fda-principal-white);
    color: var(--fda-secondary);
}

.fda_selector__button.active {
    background-color: var(--fda-white);
    color: var(--fda-secondary);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.fda_selector__button i {
    font-size: 16px;
}

.back_info_card {
    background: var(--fda-white);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 240px;
    position: absolute;
}

.back_info_card__tl {
    top: 40px;
    left: -120px;
}

.back_info_card__bl {
    bottom: 70px;
    left: -80px;
}

.back_info_card__tr {
    top: 100px;
    right: -80px;
}

.back_info_card__br {
    bottom: 20px;
    right: -50px;
}


.back_info_card__tl .icon_container {
    background-color: var(--fda-blue);
}

.back_info_card__bl .icon_container {
    background-color: var(--fda-green);
}

.back_info_card__tr .icon_container {
    background-color: var(--fda-purple);
}

.back_info_card__br .icon_container {
    background-color: var(--fda-orange);
}

.back_info_card .icon_container i {
    color: var(--fda-white);
    font-size: 10px;
}

.back_info_card .content {
    max-width: 170px;
}

.back_info_card .title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

.back_info_card .description {
    font-size: 15px;
    color: #666;
    line-height: 1.4;
}


.back_info_card .icon_container {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}


.back_info_card .content {
    flex: 1;
}




.window_block .back_info_card.window_card_1 {
    position: absolute;
    top: 89px;
    right: -45px;
}

    .window_block .back_info_card.window_card_1 .icon_container {
        background-color: #1E88E5;
    }

.window_block .back_info_card.window_card_2 {
    position: absolute;
    bottom: -5px;
    right: -25px;
}

    .window_block .back_info_card.window_card_2 .icon_container {
        background-color: #673AB7;
    }

.window_block .back_info_card.window_card_3 {
    position: absolute;
    bottom: -20px;
    left: -45px;
}

    .window_block .back_info_card.window_card_3 .icon_container {
        background-color: #00BFA6;
    }

.window_block .back_info_card.window_card_4 {
    position: absolute;
    top: 34px;
    left: -61px;
}

    .window_block .back_info_card.window_card_4 .icon_container {
        background-color: #EF5350;
    }

.fda_blue__container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    border-radius: 16px;
    align-items: center;
}

.fda_section__gradient {
    background: linear-gradient(to bottom, #EFF2F8 0%, var(--fda-white) 100%);
}


.blue_image__container {
    display: flex;
    align-items: stretch;
    overflow: hidden;
    border-radius: 16px;
    height: 100%;
    flex: 1;
}

.fda_blue__block__image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.fda_blue__block__image img {

    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ========================================
    PÁGINA INICIO - HERO DARK
======================================== */

#herodark, .fda_content_dark__background {
    background-image: url(../assets/images/fondocoding.jpg);
    background-size: cover;
    background-position: center;
    color: var(--fda-white);
}

#imagen_hero {
    width: 100%;
    height: auto;
}

.herodark {
    background-image: url(../assets/images/fondocoding.jpg);
    background-size: cover;
    background-position: center;
    color: var(--fda-white);
    padding: 140px 0px 100px 0px;
    margin-top: -97px;
    border-radius: 0px 0px 24px 24px;
}

.hero-secondary {
    margin-top: -150px;
    margin-bottom:48px;
}

.hero-main-content {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 55px;
    margin-bottom: 60px;
}

.hero-secondary-content {
    display: grid;
    grid-template-columns: 3fr 3fr;
    gap: 40px;
    max-width: 1200px;
    align-items: end;
}

.herodark .fda_title__descriptions {
    padding-right: 80px;
}

/* Estilos para breadcrumbs en hero */
.herodark .fda_breadcrums {
    margin-bottom: 24px;
    justify-content: flex-start;
}

.herodark .fda_breadcrums a {
    color: var(--fda-white);
}

.herodark .fda_breadcrums span[aria-current="page"] {
    color: var(--fda-white);
}

.herodark .fda_breadcrums li:not(:last-child)::after {
    color: var(--fda-white);
}

/* ========================================
    PÁGINA INICIO - CODEBOX
======================================== */

.fda_code__introbox {
    margin-top: -140px;
}

.fda_code__container {
    display: flex;
    flex-direction: column;
    background-color: var(--fda-white-grey);
    border-radius: 16px;
    border: 1px solid var(--fda-border-color);
    padding: 16px;
    box-shadow: var(--fda-shadow-box);
}

.fda_code__preheader .fda_title6 {
    margin-bottom: 0px;
}

.fda_code__header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.fda_code__preheader {
    background-color: var(--fda-white-grey);
    border-radius: 16px 16px 0px 0px;
    border: 1px solid var(--fda-border-color);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
    padding: 16px 24px 8px;
}

.fda_code__body {
    display: flex;
    flex-direction: row;
    background-color: var(--fda-white);
    border-radius: 16px;
    padding: 16px;
    gap: 1em;
    border: 1px solid var(--fda-border-color);
    width: 100%;
}

.code_text__grow {
    flex-grow: 1;
}


.code_indent_10 {
    text-indent: 10px;
}

.code_indent_20 {
    text-indent: 20px;
}

.code_indent_30 {
    text-indent: 30px;
}

/* ========================================
    PÁGINA CONÓCENOS - CODEBOX RIGHT UX
======================================== */

.codebox_right {
    padding: 72px 0px;
}

.fda_code__button {
    border: 1px solid var(--fda-grey30);
    padding: 8px 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--fda-white-grey);
}

.fda_code__button:hover {
    background-color: var(--fda-secondary);
}

.fda_code__header .fda_title6 {
    margin-bottom: 0px;
}

.fda_code__preheader .fda_title6 {
    margin-bottom: 0px;
}

.fda_code__header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1em;
}

.fda_code__preheader {
    background-color: var(--fda-white-grey);
    border-radius: 16px 16px 0px 0px;
    border: 1px solid var(--fda-border-color);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
    padding: 16px 24px 8px;
}

.fda_code__body {
    display: flex;
    flex-direction: row;
    background-color: var(--fda-white);
    border-radius: 16px;
    padding: 16px;
    gap: 1em;
    border: 1px solid var(--fda-border-color);
    width: 100%;
}

.code_text__grow {
    flex-grow: 1;
}

.fda_codebox__lateral {
    position: absolute;
    right: 0px;
    top: -60px;
}



/* ========================================
    PÁGINA CONTACTANOS - FORMULARIOS
======================================== */

.contact_form {
    border: 1px solid var(--fda-border-color);
    background-color: var(--fda-white-grey);
    border-radius: 16px;
    box-shadow: var(--fda-shadow-form);
    color: var(--fda-deep-grey);
    width: 100%;
    max-width: 572px;
    padding: 24px;
    z-index: 30;
    margin: 0 auto;
}

    .contact_form h3 {
        margin-bottom: 10px;
    }

    .contact_form span {
        font-family: Fira Code;
    }



form {
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
    border-radius: 16px;
    border: 1px solid var(--fda-border-color);
    background: var(--fda-white);
}


form div {
    width: 100%;
}

.contact_form input, .contact_form select, .contact_form textarea {
    border: 1px solid var(--fda-border-color);
    padding: 12px;
    border-radius: 8px;
    width: 100%;
}

/* ========================================
   FORMULARIOS - LABELS Y CONTROLES
   ======================================== */

/* ========================================
   LABELS PRINCIPALES
   ======================================== */
.control-label {
    margin-bottom: 4px;
    display: block;
    font-family: var(--fda-font-primary);
    font-size: 14px;
    color: var(--fda-deep-grey);
    font-weight: 500;
    line-height: 1.4;
}

.form-check-label {
    font-family: var(--fda-font-primary);
    font-size: 14px;
    color: var(--fda-deep-grey);
    font-weight: 500;
    cursor: pointer;
    line-height: 1.4;
}

/* ========================================
   GRUPOS DE INPUTS
   ======================================== */
.input-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}

.input-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

/* ========================================
   CHECKBOXES Y TERMINOS LEGALES
   ======================================== */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-family: var(--fda-font-primary);
    font-size: 14px;
    color: var(--fda-deep-grey);
    line-height: 1.4;
}

.checkbox-text {
    flex: 1;
    line-height: 1.4;
}

.legal-terms {
    margin-bottom: 20px;
}

.legal-terms input[type="checkbox"] {
    margin: 0;
    width: 16px;
    height: 16px;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

input:placeholder-shown {
    color: var(--fda-lightgrey);
    opacity: 1;
}

.codetext {
    font-size: 0.9rem;
}



/* ========================================
    PÁGINA CONÓCENOS - CODEBOX UX
======================================== */

.codebox-ux-container {
    width: 100%;
    max-width: none;
    background: var(--fda-white);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.codebox-ux-container * {
    font-family: 'Fira Code', monospace;
}

.codebox-ux-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.codebox-ux-header h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.codebox-ux-button {
    font-size: 14px;
    font-weight: normal;
    padding: 8px 16px;
    border: none;
    background: #00abb0;
    color: var(--fda-white);
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.codebox-ux-text {
    background: #f8f9fa;
    border-radius: 4px;
    padding: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.codebox-ux-text p {
    font-size: 14px;
    font-weight: normal;
    margin: 2px 0;
}

.code_text__grow {
    flex-grow: 1;
}

/* ========================================
    PÁGINA OFERTA FORMATIVA - CONTENIDOS CURSO
======================================== */


/* ========================================
    PÁGINA OFERTA FORMATIVA - MASTER VSCODE
======================================== */


.master_contenidos__listado {
    background-color: #f5f5f5;
}

.master_vscode__body {
    width: 100%;
}




.fda_section__three-columns {
    display: grid;
    grid-template-columns: 1fr 7fr 18fr;
    gap: 0px;
    max-width: 1200px;
    min-height:400px;
    margin: 0px;
    padding: 0px;
}

.vscode_icons {
    text-align: center;
    background-color: #f5f5f5;
    border-right: 1px solid #e5e5e5;
    gap: 0;

}
.vscode_icons p {
    margin: 10px 0px;
    font-size: 14px;
}

.contenido_oculto {
    display: none;
}

.master_temario__contenido {
    padding: 20px;
    gap: 20px;
}

.master_temario__contenido h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.master_temario__contenido p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.master_contenidos__temas {
    gap: 0px;
    margin-top: 0px;
    padding-top: 5px;
}

.compact_gap {
    gap: 5px;
}

.compact_gap .master_content_header {
    margin-bottom: 0px;
}

.compact_gap {
    padding-left: 5px;
    padding-right: 5px;
}

.compact_gap ul li:last-child {
    margin-bottom: 5px;
}

/* ========================================
    PÁGINA OFERTA FORMATIVA - PRIMER PROYECTO
======================================== */

.primer-proyecto-section {
    background-color: #f7f9fc;
    padding: 60px 0;
}

.primer-proyecto-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.primer-proyecto-header {
    max-width: 640px;
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.primer-proyecto-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    text-align: center;
    width: 100%;
}

.primer-proyecto-subtitle {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: center;
    width: 100%;
}

.primer-proyecto-description {
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
    color: #555;
    line-height: 1.6;
}

.primer-proyecto-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
}

.central-image-container {
    position: relative;
    z-index: 2;
}

.central-image-container img {
    width: 600px;
    height: auto;
    border-radius: 1rem;
    object-fit: cover;
    max-width: 100%;
}

.info-card {
    position: absolute;
    background: var(--fda-white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 222px;
    z-index: 3;
}

.card-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

    .card-icon i {
        color: var(--fda-white);
        font-size: 14px;
    }

.card-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.card-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
    margin: 0;
}

.card-top-left {
    top: 90px;
    left: 20px;
}

.card-top-right {
    top: 90px;
    right: 20px;
}

.card-bottom-left {
    bottom: 90px;
    left: 20px;
}

.card-bottom-right {
    bottom: 90px;
    right: 20px;
}


.profile_container {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 20px;
}

.profile_image {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.profile_info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}

.profile_name {
    color: #F09769;
    font-weight: 600;
    font-size: 14px;
    text-align: left;
}

.profile_specialty {
    color: #666;
    font-size: 12px;
    font-family: 'Fira Code', monospace;
    text-align: left;
}

.master_vscode__subheader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #f5f5f5;
    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
    padding: 5px 0px;
}

.inscription_button {
    margin-right: 20px;
}

.inscription_button .fda_button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 14px;
}

.inscription_button img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

.master_content_header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background-color: #f5f5f5;
    border-bottom: 1px solid #E5E5E5;
    font-weight: 700;
    font-size: 16px;
    color: #333;
}

.master_content_header i {
    color: #F09769;
    font-size: 16px;
}

.master_button__contenidos {
    background-color: transparent;
    border: 0px;
    padding: 10px 10px;
    text-align: left;
    margin: 4px 2px;
    transition: all ease 500ms;
    opacity: 0.6;
    font-weight: 400;
    width: 99%;
    color: #999;
}

    .master_button__contenidos:hover {
        background-color: var(--fda-white);
        border-radius: 4px;
        box-shadow: 0px 4px 0px #ffa366;
        opacity: 0.8;
    }

    .master_button__contenidos:focus {
        background-color: var(--fda-white);
        border-radius: 4px;
        box-shadow: 0px 4px 0px var(--fda-secondary);
        opacity: 1;
        color: #333;
        font-weight: 600;
    }

    .master_button__contenidos.active {
        background-color: var(--fda-white);
        border-radius: 4px;
        box-shadow: 0px 4px 0px var(--fda-primary);
        opacity: 1;
        color: var(--fda-primary);
        font-weight: 600;
    }

.master_temario__contenido h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.master_temario__contenido p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.compact_gap {
    gap: 5px;
}

.compact_gap .master_content_header {
    margin-bottom: 0px;
}

.compact_gap {
    padding-left: 5px;
    padding-right: 5px;
}

.compact_gap ul li:last-child {
    margin-bottom: 5px;
}



/* ========================================
    MASTER CONTENT BROWSER
======================================== */

.profile_name {
    font-weight: 600;
    font-size: 14px;
    text-align: left;
}

.master_button__contenidos.active {
    background-color: var(--fda-white);
    border-radius: 4px;
    opacity: 1;
    font-weight: 600;
}

.master_button__contenidos:hover {
    background-color: var(--fda-white);
    border-radius: 4px;
    opacity: 0.8;
}

.master_content_header i {
    font-size: 16px;
}

.profile_image {
    box-sizing: border-box;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    display: block;
    position: relative;
}

.profile_image img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
    background-color: #f0f0f0;
    min-width: 31px;
    min-height: 31px;
}

.profile_image_fallback {
    display: none;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--fda-white);
    font-weight: bold;
    font-size: 12px;
}

.master-content-aqua .profile_name {
    color: #00ABB0;
}

.master-content-aqua .master_button__contenidos.active {
    color: #333;
}

.master-content-aqua .master_button__contenidos.active i {
    color: var(--fda-aqua);
    margin-right: 8px;
}

.master-content-creamy .master_button__contenidos.active {
    color: #333;
    box-shadow: 0px 4px 0px var(--fda-creamy);
}

.master-content-creamy .master_button__contenidos.active i {
    color: var(--fda-creamy);
    margin-right: 8px;
}

.master-content-aqua .modulo_item .master_temario__contenido::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--fda-aqua);
}

.master-content-creamy .modulo_item .master_temario__contenido::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--fda-creamy);
}

.master-content-aqua .master_button__contenidos:hover {
    box-shadow: 0px 4px 0px var(--fda-aqua);
}

.master-content-creamy .master_button__contenidos:hover {
    box-shadow: 0px 4px 0px var(--fda-creamy);
}

.master-content-aqua .master_content_header i {
    color: #00ABB0;
}

.master-content-creamy .master_content_header i {
    color: #F09769;
}

.master-content-aqua .profile_image_fallback {
    background-color: #00ABB0;
}

.master-content-creamy .profile_image_fallback {
    background-color: #F09769;
}

.master-content-creamy .profile_name {
    color: #F09769;
}


.master-content-primary .master_button__contenidos.active {
    color: #333;
    box-shadow: 0px 2px 0px var(--fda-creamy);
}

    .master-content-primary .master_button__contenidos.active i {
        color: var(--fda-creamy);
    }

.master-content-primary .master_button__contenidos:hover {
    box-shadow: 0px 2px 0px var(--fda-creamy);
}

.master-content-primary .master_content_header i {
    color: #ECA51A;
}


.master-content-primary .profile_image_fallback {
    background-color: #ECA51A;
}

/* ========================================
    BROWSER WINDOW
======================================== */

.browser-window-container {
    max-width: 995px;
    margin: 0 auto;
    width: 100%;
}

/* ========================================
    TOOLKIT UX
======================================== */

.toolkit-section {
    margin-top: 0;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.toolkit-title {
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--fda-secondary);
}

    .toolkit-title .code-text {
        font-family: 'Courier New', monospace;
        margin-left: 8px;
    }

.toolkit-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

.toolkit-logo {
    width: 60px;
    height: 60px;
    display: flex;
}

.toolkit-logo img {
    max-width: 40px;
    max-height: 40px;
    object-fit: contain;
}

.toolkit-logo img[src*="sqlserver-logo"] {
    max-width: 120px;
}

.hero_slider__column {
    min-width: 534px;
}
.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center; 
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 15px; 
    justify-content: center;
    align-items: center;
    height: 500px;
    width: 100%;
}

.slide {
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    color: var(--fda-white);
    
    transition: width 0.5s ease-in-out;
    height: 100%;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.slide > * {
    position: relative;
    z-index: 2;
}

.master-badge {
    position: relative;
    background-color: #E9F8F8;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'Fira Code', monospace;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: inline-block;
}

.slide-content {
    width: 100%;
    max-width: 400px;
    padding: 32px;
}

.slide .fda_title3 {
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.7);
}

.slide .slide_text {
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.7);
    margin-bottom: 24px;
    font-family: 'Fira Code', monospace;
    opacity: 0.9;
}

.slide a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--fda-white);
    text-decoration: none;
    font-family: 'Fira Code', monospace;
    font-weight: 600;
    transition: opacity 0.3s ease;
}
    
.slide a:hover {
    opacity: 0.8;
}
    
.slide a img {
    width: 16px;
    height: 16px;
}

.slide.small {
    width: 25%; 
    opacity: 0.7;

}

.slide.large {
    width: 75%;
    opacity: 1;
}

.slide.large .master-badge {
    transform: rotate(0deg);
    margin-bottom: 12px;
    margin-right: 0;
}

.slide.large .slide_text, .slide.large a {
    display: block;
}

.slide.small h2 {
    transform: rotate(-90deg);
    white-space: nowrap;
}

.slide.small .slide_text, .slide.small a {
    display: none;
}

.slide_content__close {
    opacity: 0;
    position: absolute;
    transform: rotate(-90deg);
}
.slide.small .slide_content__close {
    width: 500px;
    height: 133px;
    transform-origin: center;
    right: -182px;
    bottom: 184px;
    padding: 20px;
    opacity: 1;
    transition: opacity 0.25s ease-in 0.3s;
}
.slide-content {
    opacity: 0;
    position: relative;
    z-index: -1;
}
.slide.large .slide-content {
    opacity: 1;
    z-index: 2;
    transition: opacity 0.25s ease-in 0.3s;
}
.slide_title__close {
    margin-bottom: 0;
    white-space: nowrap;
}

.faq_section__principal {
    padding: 80px 0;
}

.fda_section__white {
    margin: 0 auto;
    max-width: 1100px;
    border-radius: 16px;
}

.faq_section__principal .fda_section__content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.faq_section__principal .fda_question__panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.cta_contact {
    padding: 70px 0px 270px 0px;
    position: relative;
}

.cta_contact .fda_title__descriptions {
    text-align: center;
}

.fda_contact__content {
    background-color: var(--fda-secondary);
    color: var(--fda-white);
    position: relative;
    border-radius: 24px;
    padding: 56px 48px 200px 48px;
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    gap: 32px;
}

.fda_contact__codeblock {
    position: absolute;
    top: 325px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    z-index: 10;
    text-align: left;
}

.cta_contact .image_info__square{
    max-width: 220px;
    border-radius: 16px;
}

.fda_question__panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 15px 0px;
    max-width: 800px;
    margin: 20px auto;
}

.fda_question__panel__why {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 15px 0px;
    max-width: 800px;
    margin: 20px auto;
}

  .fda_question__panel-meetus {
     display: flex;
     flex-direction: column;
     padding: 15px 0px;
     max-width: 800px;
     margin: 20px auto;
     position: relative;
 }

.fda_question__panel-meetus .fda_faq__container {
    background-color: transparent;
    box-shadow: none;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.fda_question__panel-meetus{
    background-color: transparent;
    box-shadow: none;
}

.fda_question__panel-meetus .fda_faq__container:hover {
    background-color: rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

    .fda_question__panel-meetus .fda_faq__container.pregunta_activa {
        background-color: var(--fda-white);
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        opacity: 1;
    }

.fda_faq__container.pregunta_activa h3 {
    color: var(--fda-secondary);
}

.fda_question__panel-meetus .fda_faq__container .fda_faq_header h3 {
    color: var(--fda-white);
}


.fda_question__panel-meetus .fda_faq__container.pregunta_activa .fda_faq__body p {
    color: var(--fda-deep-grey);
}

.fda_section__white .fda_question__panel .fda_faq__container {
    --faq-bg-color: var(--fda-white);
    --faq-title-color: var(--fda-secondary);
    --faq-button-bg: var(--fda-secondary);
    --faq-button-color: var(--fda-white);
}

.fda_section__white .fda_question__panel .fda_faq__container.pregunta_activa {
    --faq-bg-color: var(--fda-white);
    --faq-title-color: var(--fda-secondary);
    --faq-button-bg: var(--fda-secondary);
    --faq-button-color: var(--fda-white);
}

.fda_section__white .fda_question__panel .fda_faq__container.pregunta_inactiva {
    --faq-bg-color: var(--fda-white);
    --faq-title-color: var(--fda-grey);
    --faq-button-bg: var(--fda-principal-white);
    --faq-button-color: var(--fda-secondary);
}

.fda_section__white .fda_question__panel .fda_faq__container.pregunta_activa {
    background-color: var(--fda-white);
}

.fda_section__white .fda_question__panel .fda_faq__container.pregunta_activa .fda_faq_header h3 {
    color: var(--faq-title-color);
}

.fda_section__white .fda_question__panel .fda_faq__container.pregunta_activa .fda_faq_header button {
    background-color: var(--faq-button-bg);
    color: var(--faq-button-color);
}

.fda_section__white .fda_question__panel .fda_faq__container.pregunta_inactiva {
    background-color: var(--fda-white);
}

.fda_section__white .fda_question__panel .fda_faq__container.pregunta_inactiva .fda_faq_header h3 {
    color: var(--faq-title-color);
}

.fda_section__white .fda_question__panel .fda_faq__container.pregunta_inactiva .fda_faq_header button {
    background-color: var(--fda-grey);
    color: var(--fda-white);
}

.fda_question__panel-meetus .fda_faq_header button {
    opacity: 0.5;
    transition: all 0.3s ease;
}

.fda_question__panel-meetus .fda_faq__container.pregunta_activa .fda_faq_header button {
    opacity: 1;
}

.fda_faq__container {
    --faq-bg-color: transparent;
    --faq-title-color: var(--fda-white);
    --faq-button-bg: var(--fda-secondary);
    --faq-button-color: var(--fda-white);
    
    background-color: var(--faq-bg-color);
    border-radius: 12px;
    padding: 16px 16px 0px 16px;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fda_faq__container:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pregunta_activa {
    background-color: var(--fda-white);
    border-bottom: 4px solid var(--fda-secondary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pregunta_inactiva .fda_faq_header button {
    background-color: var(--fda-principal-white);
    color: var(--fda-secondary);
}

.fda_faq_header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin-bottom: 0;
}

.fda_faq_header h3 {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    margin: 0;
    flex: 1;
    padding-right: 16px;
    text-align: left;
}

    .fda_faq_header button {
        flex-shrink: 0;
        margin: 0;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background-color: var(--faq-button-bg);
        color: var(--faq-button-color);
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        font-weight: 400;
        cursor: pointer;
        transition: all 0.3s ease;
    }

.fda_faq_header button:hover {
    background-color: var(--fda-secondary-light);
    transform: scale(1.05);
}

.fda_faq__body {
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin-top: 16px;
}

.fda_faq__body p {
    color: var(--fda-deep-grey);
    padding: 0;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.respuesta_oculta {
    max-height: 0px;
    opacity: 0;
}

.respuesta_activa {
    max-height: 400px;
    opacity: 1;
}

.fda_form__container {
    display: flex;
    flex-direction: column;
    background-color: var(--fda-white-grey);
    border-radius: 8px;
    border: 1px solid var(--fda-grey30);
    padding: 10px 15px;
    box-shadow: 0px 0px 4px rgba(0,0,0, 0.3);
}

.fda_form__header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 1em;
}

.fda_form__body {
    display: flex;
    flex-direction: column;
    background-color: var(--fda-white);
    border-radius: 8px;
    padding: 15px;
    gap: 1em;
}


.fda_form__body input, .fda_form__body textarea {
    width: 100%;
    border: 1px solid var(--fda-white-grey);
    padding: 10px;
    margin-bottom: 5px;
}

.preform_vertical {
    background-color: var(--fda-principal-white);
    width: 100%;
    height: 80%;
    max-width: 700px;
    padding: 20px;
    border-radius: 24px;
    position: absolute;
    top: 10%;
}

.contact_form {
    border: 1px solid var(--fda-border-color);
    background-color: var(--fda-white-grey);
    border-radius: 16px;
    box-shadow: var(--fda-shadow-form);
    color: var(--fda-deep-grey);
    width: 100%;
    max-width: 572px;
    padding: 24px;
    z-index: 30;
    margin: 0 auto;
}

    .contact_form h3 {
        margin-bottom: 10px;
    }

    .contact_form span {
        font-family: Fira Code;
    }



form {
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    border-radius: 16px;
    border: 1px solid var(--fda-border-color);
    background: var(--fda-white);
}

.contact_form__content {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact_form__field {
    flex: 1 1 calc(50% - 6px);
}

form div {
    width: 100%;
}

.contact_form select,
select.form-control {
    padding-right: 80px;
    background-position: right 20px center;
    background-repeat: no-repeat;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-size: 20px;
}


input:placeholder-shown {
    border: 1px solid var(--fda-border-color);
    padding: 12px;
    border-radius: 8px;
    width: 100%;
    color: var(--fda-lightgrey);
    opacity: 1;
}

input[type=radio] {
    margin: 0;
}

.codetext {
    font-size: 0.9rem;
}

.fda_contact__cards__panel {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex-direction: row;
}

.contact_datos {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 16px;
    flex: 2 0 0;
}

.contact_whatsapp {
    display: flex;
    padding: 24px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 16px;
    border-radius: 8px;
    background: var(--fda-secondary);
    box-shadow: var(--fda-shadow-hover);
    color: var(--fda-white);
}

.contact_whatsapp i {
    font-size: 30px;
}

.fda_contact__card {
    display: flex;
    max-width: 300px;
    padding: 12px 16px;
    align-items: flex-start;
    gap: 16px;
    border-radius: 8px;
    border: 1px solid var(--fda-border-color);
    background: var(--fda-white);
}

.contact_form__checkbox {
    display: flex;
    align-items: center;
    gap: 15px;
    width: auto;
}

.contact_form__checkbox input[type=checkbox] {
    width: 20px;
    height: 20px;
    margin: 0;
}

.fda_list__numbers__box.fda_circle_s h3 {
    margin: 0;
    padding: 0;
    font-weight: normal;
    font-size: 16px;
}

.fda_list__numbers__box.fda_circle_s::after {
    width: 2px;
    height: 100%;
    background-color: var(--fda-grey30);
    position: absolute;
    z-index: 0;
    top: 35px;
}





/* ========================================
   MODAL DE TEST DIVERTIDO - COMPONENTES
   ======================================== */

/* ========================================
   MODAL PRINCIPAL
   ======================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: #F5F5F5;
    border-radius: 16px;
    padding: 16px;
    width: 600px;
    max-width: 90vw;
    min-width: 400px;
    max-height: 80vh;
    height: fit-content;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive: Modal más pequeño en móvil */
@media (max-width: 768px) {
    .modal-content {
        width: calc(100vw - 32px);
        max-width: calc(100vw - 32px);
        min-width: unset;
        padding: 16px;
        margin: 16px;
        max-height: calc(100vh - 32px);
        overflow-y: auto;
    }
}

/* ========================================
   HEADER DEL MODAL
   ======================================== */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.modal-title {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Responsive: Cambiar orden en pantallas pequeñas */
@media (max-width: 768px) {
    .modal-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

.modal-title h2 {
    margin: 0;
    color: #333;
    font-size: 18px;
    font-weight: bold;
    font-family: var(--fda-font-primary);
}

.modal-title p {
    margin: 0;
    color: #666;
    font-size: 14px;
    font-family: var(--fda-font-secondary);
}

.close {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.close:hover {
    background-color: #e0e0e0;
}

/* ========================================
   CUERPO DEL MODAL
   ======================================== */
.modal-body {
    margin: 0;
}

.content-container {
    background-color: var(--fda-white);
    border-radius: 12px;
    padding: 20px 20px 16px 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.12);
    width: 100%;
    display: flex;
    gap: 0;
    align-items: stretch;
    position: relative;
    min-height: 300px;
}

/* ========================================
   COLUMNAS DEL MODAL
   ======================================== */
.left-column {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.left-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.right-column {
    flex: 2;
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.left-column[style*="display: none"] + .right-column {
    flex: 1;
    padding-left: 0;
}

/* ========================================
   RESPONSIVE: IMAGEN ENCIMA DE PROGRESS BAR
   ======================================== */
@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
        padding: 20px;
    }
    
    .left-column {
        max-width: 710px;
        max-height: 200px;
        margin: 0 auto 16px auto;
        border-radius: 12px;
        overflow: hidden;
    }
    
    .left-column img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
    }
    
    .right-column {
        order: 2;
        flex: 1;
        padding-left: 0;
    }
}

/* ========================================
   PROGRESO DEL TEST
   ======================================== */
.progress-container {
    margin-bottom: 15px;
}

.progress-text {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
    margin-bottom: 8px;
    text-align: left;
    font-family: var(--fda-font-secondary);
    font-weight: 500;
}

.progress-bar {
    background-color: #e0e0e0;
    border-radius: 10px;
    height: 5px;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.progress-fill {
    height: 100%;
    background-color: var(--fda-secondary);
    width: 0%;
    transition: width 0.5s ease;
    border-radius: 10px;
    display: block;
    min-width: 0%;
    position: absolute;
    top: 0;
    left: 0;
}

/* ========================================
   CONTENIDO DEL TEST
   ======================================== */

.bold-text {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    font-family: var(--fda-font-primary);
    font-weight: 600;
}

#answersContainer {
    margin-top: 20px;
    margin-bottom: 24px;
}

.answer-option {
    margin-bottom: 20px;
}

.answer-option input[type="radio"] {
    accent-color: var(--fda-secondary);
    margin: 0;
}

/* ========================================
   PANTALLA DE BIENVENIDA
   ======================================== */
.welcome-screen {
    text-align: center;
}

.welcome-title {
    font-family: var(--fda-font-primary);
    font-size: 30px;
    font-weight: 900;
    color: #333;
    margin-bottom: 24px;
    line-height: 1.2;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.welcome-screen p {
    font-size: 18px;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.welcome-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.welcome-image {
    display: block;
    margin: 0 auto 24px auto;
    max-width: 200px;
    height: auto;
    border-radius: 12px;
}

/* ========================================
   BOTONES DEL MODAL
   ======================================== */
.modal .fda_buttons__panel {
    display: flex;
    gap: 16px;
    margin-top: auto;
    padding-top: 24px;
    background: var(--fda-white);
}

.modal .fda_button {
    padding: 10px 22px 10px 24px;
    width: 100%;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--fda-font-primary);
}

.modal .fda_button__white {
    background-color: var(--fda-white);
    color: #333;
    border: 1px solid #ddd;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.modal .fda_button__white:hover {
    background-color: #f5f5f5;
}

.modal .fda_button__white:disabled,
.modal .fda_button__white.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.modal #prevBtn,
.modal #nextBtn {
    flex: 1;
    min-width: 120px;
}

.welcome-screen .fda_button {
    margin-top: 32px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

#envBtn {
    width: 100%;
    background-color: var(--fda-white);
    color: black;
    border: 1px solid #ddd;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    font-family: var(--fda-font-primary);
}

#envBtn:hover {
    background-color: var(--fda-secondary);
    color: var(--fda-white);
}

/* ========================================
   PÁGINAS LEGALES - COMPONENTES
   ======================================== */

.privacy-page {
    background-color: var(--fda-principal-white);
    padding: 40px 0px;
    min-height: 100vh;
}

.fda_privacy__content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.fda_privacy__content h1 {
    font-family: var(--fda-font-primary);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--fda-secondary);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.fda_privacy__content h2 {
    font-family: var(--fda-font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--fda-secondary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.fda_privacy__content h3 {
    font-family: var(--fda-font-primary);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--fda-secondary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.fda_privacy__content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.fda_privacy__content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.fda_privacy__content li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.fda_privacy__content table {
    margin: 1.5rem 0;
    border-collapse: collapse;
    width: 100%;
    background-color: var(--fda-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fda_privacy__content th,
.fda_privacy__content td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--fda-border-color);
}

.fda_privacy__content th {
    background-color: var(--fda-principal-white);
    font-weight: 600;
    color: var(--fda-secondary);
}

.fda_privacy__content a {
    color: var(--fda-secondary);
}

.fda_privacy__content a:hover {
    color: var(--fda-principal);
}

/* Regla específica para landings: ocultar contact_postheader__block y contact_preheader__block */
.landing_form .contact_postheader__block,
.landing_form .contact_preheader__block,
.landing_form_sticky .contact_postheader__block,
.landing_form_sticky .contact_preheader__block {
    display: none !important;
}
