.elementor-4084 .elementor-element.elementor-element-1c8a6ea{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}@media(max-width:767px){.elementor-4084 .elementor-element.elementor-element-1c8a6ea{--justify-content:center;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}.elementor-4084 .elementor-element.elementor-element-1c8a6ea.e-con{--align-self:center;}.elementor-4084 .elementor-element.elementor-element-893de55.elementor-element{--align-self:stretch;}}/* Start custom CSS for html, class: .elementor-element-893de55 *//* Contenedor principal alineado */
.header-custom-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: inherit;
}

/* Separadores verticales */
.icon-separator {
    color: #222222; 
    font-size: 18px;
    font-weight: 300;
}

/* Contenedores individuales */
.icon-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

/* Diseño de los círculos (teléfono y ES) */
.circle-btn {
    width: 38px;
    height: 38px;
    border: 2px solid #222222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222222;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: transparent;
}

.circle-btn:hover {
    background-color: #0E513B;
    color: #ffffff;
}

/* Forzar que el icono (SVG) del teléfono se vuelva blanco al pasar el ratón */
.circle-btn:hover svg {
    fill: #ffffff !important;
    transition: fill 0.3s ease;
}

/* Flechita debajo del ES alineada de forma absoluta */
.lang-arrow {
    position: absolute;
    top: 32px; 
    font-size: 9px;
    color: #222222;
    pointer-events: none; /* Evita que la flecha estorbe al pasar el ratón */
}

/* --- ESTILOS DEL GLOBO TOOLTIP (Teléfono) --- */
.custom-tooltip {
    position: absolute;
    top: 150%;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border: 1px solid #e0e0e0;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.08);
    padding: 10px 15px;
    text-align: center;
    font-size: 15px;
    color: #333;
    white-space: nowrap;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

/* El piquito superior del globo */
.custom-tooltip::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent #ffffff transparent;
}

/* Mostrar globo al pasar el ratón */
.phone-wrapper:hover .custom-tooltip {
    opacity: 1;
    visibility: visible;
    top: 130%; 
}

/* --- ESTILOS DEL DESPLEGABLE (Idiomas) --- */
.custom-dropdown {
    position: absolute;
    top: 150%;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border: 1px solid #e0e0e0;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.08);
    border-radius: 4px;
    min-width: 110px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    display: flex;
    flex-direction: column;
}

/* Enlaces e items del menú de idioma */
.custom-dropdown a {
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    text-align: center;
    border-bottom: 1px solid #eee; 
    transition: background 0.2s;
}

.custom-dropdown a:last-child {
    border-bottom: none;
}

.custom-dropdown a:hover {
    background-color: #f9f9f9;
    color: #0E513B;
}

/* Mostrar menú de idiomas al pasar el ratón */
.lang-wrapper:hover .custom-dropdown {
    opacity: 1;
    visibility: visible;
    top: 100%; 
}

/* --- 1. COLOR BLANCO: Para la cabecera transparente (arriba del todo) --- */
.ast-theme-transparent-header .header-custom-icons .circle-btn {
    border-color: #ffffff;
    color: #ffffff;
}
.ast-theme-transparent-header .header-custom-icons .circle-btn svg {
    fill: #ffffff;
}
.ast-theme-transparent-header .header-custom-icons .icon-separator,
.ast-theme-transparent-header .header-custom-icons .lang-arrow {
    color: #ffffff;
}

/* --- 2. COLOR NEGRO: Obligatorio al hacer scroll (Sticky) --- */
.site-header.ast-header-sticked .header-custom-icons .circle-btn {
    border-color: #222222 !important;
    color: #222222 !important;
    background-color: transparent !important;
}
.site-header.ast-header-sticked .header-custom-icons .circle-btn svg {
    fill: #222222 !important;
}
.site-header.ast-header-sticked .header-custom-icons .icon-separator,
.site-header.ast-header-sticked .header-custom-icons .lang-arrow {
    color: #222222 !important;
}

/* --- 3. HOVER VERDE: Proteger el hover cuando la cabecera es Sticky --- */
.site-header.ast-header-sticked .header-custom-icons .circle-btn:hover {
    background-color: #0E513B !important;
    border-color: #0E513B !important;
    color: #ffffff !important;
}
.site-header.ast-header-sticked .header-custom-icons .circle-btn:hover svg {
    fill: #ffffff !important;
}

/* --- ADAPTACIÓN PARA MÓVIL (Off-Canvas de Astra) --- */
@media (max-width: 921px) {
    /* 1. Ocultar únicamente el primer separador */
    .header-custom-icons .icon-separator:first-child {
        display: none !important;
    }
}/* End custom CSS */