/**
 * _shared.css
 * Módulo: Estilos globales compartidos — tipografía, utilidades, header, footer,
 *         home general, proyectos (Rochela, Tacuara, G22, Mall), about-us, contacto
 * Extraído de style.css (líneas 104–974) — 2026-06
 * Cargado desde: views/Include/head.html.twig
 */

/** FONTS & SPA HOME BASE **/
@font-face {
    font-family: 'AkzidenzGroteskRegular';
    src: url('../fonts/AkzidenzGrotesk-Regular.otf') format('opentype');
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'AkzidenzGroteskMedium';
    src: url('../fonts/AkzidenzGrotesk-Medium.otf') format('opentype');
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'AkzidenzGroteskBold';
    src: url('../fonts/AkzidenzGrotesk-Bold.otf') format('opentype');
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'KiffoBDB';
    src: url('../fonts/KiffoBDB-Regular.otf') format('opentype');
    font-display: swap;
}

@font-face {
    font-family: 'MyriadPro';
    src: url('../fonts/MyriadPro-Regular.otf') format('opentype');
    font-display: swap;
}


/** SCROLLBAR STYLES **/
::-webkit-scrollbar {
    width: 10px !important;
}

::-webkit-scrollbar-track {
    background: var(--gray) !important;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-500) !important;
    border-radius: 10px;
}

.tl-slide-content-container {
    margin-top: 6m !important;
    margin-bottom: 6em !important;
}

.tl-storyslider .tl-slider-background {
    background-color: var(--tertiary-200) !important;
}

.tl-timenav .tl-timenav-slider .tl-timenav-slider-background {
    background-color: var(--tertiary-300) !important;
}

.tl-timemarker .tl-timemarker-content-container {
    height: 40% !important;
    width: 150px;
    background-color: var(--white) !important;
    color: var(--black) !important;
    border-radius: 10px !important;
    padding: 10px !important;
    
}

.tl-timemarker .tl-timemarker-content-container {
    height: 40% !important;
    width: 150px;
    background-color: var(--white) !important;
    color: var(--black) !important;
    border-radius: 10px !important;
    padding: 10px !important;
}

.tl-timemarker-content {
    font-size: 16px !important;
    color: var(--black) !important;
}


.tl-timemarker .tl-timemarker-content-container:hover {
    background-color: var(--info-100) !important;
}

.nav {
    gap: 20px !important;
}

/** UTILIDADES PROPIAS **/

.row {
    --bs-gutter-x: 0 !important;
    --bs-gutter-y: 0 !important;
}

.bg-grey {
    background-color: var(--gray) !important;
}

.bg-white {
    background-color: var(--white) !important;
}

.bg-dark {
    background-color: var(--dark) !important;
}

.bg-primary {
    background-color: var(--primary-50) !important;
}

.bg-dark-links:hover {
    background-color: #2e2e2e !important;

}

.tl-timegroup-message {
    background-color: #333;
    color: #fff;
}

/* Cambiar color del "dot" en la línea de tiempo */

.tag-success {
    background-color: var(--positive-200) !important;
    color: var(--positive-500) !important;
    padding: 5px 10px !important;
    border-radius: 20px !important;
}

.tag-error {
    background-color: var(--negative-200) !important;
    color: var(--negative-500) !important;
    padding: 5px 10px !important;
    border-radius: 20px !important;
}

.tag-warning {
    background-color: var(--notice-200) !important;
    color: var(--notice-500) !important;
    padding: 5px 10px !important;
    border-radius: 20px !important;
}

.tag-info {
    background-color: var(--info-200) !important;
    color: var(--info-500) !important;
    padding: 5px 10px !important;
    border-radius: 20px !important;
}

a {
    text-decoration: none !important; 
}

a:hover {
    text-decoration: none !important;
}

.btn-outline-light:hover {
    background-color: var(--info-950);
}

.gap-5 {
    gap: 5px !important;
}

.gap-10 {
    gap: 10px !important;
}

.gap-20 {
    gap: 20px !important;
}

.oppacity-5 {
    opacity: 0.4 !important;
}

.oppacity-8 {
    opacity: 0.8 !important;
}

.mt-l {
    margin-top: 3em !important;
}

.mt-xl {
    margin-top: 6em !important;
}

.mt-xxl {
    margin-top: 12em !important;
}

.img-hover-zoom {
  transition: transform 0.3s ease;
}
.img-hover-zoom:hover {
  transform: scale(1.02);
}

.bg-hover-1:hover {
    background-color: var(--notice-100) !important;
}

.bg-hover-2:hover {
    background-color: var(--tertiary-400) !important;
}


.btn-outline-warning {
    background-color: var(--white) !important;
    color: var(--primary-550) !important;
    border: 1px solid var(--primary-500) !important;
    cursor: pointer !important;
    align-items: center !important;
    align-content: center !important;
}

/** Colores repetitivos **/
.text-body {
    color: var(--tertiary-700) !important;
}

.text-primary, .color-primary {
    color: var(--primary-500) !important;
}

.text-title-primary, .color-primary {
    color: var(--primary-555) !important;
}

i.color-primary {
    color: var(--primary-550) !important;
}

.button-primary {
    background-color: var(--primary-400) !important;
    color: var(--black) !important;
    font-weight: bold !important;
    height: 48px !important;
    border: none !important;
    border-radius: 20px !important;
    cursor: pointer !important;
    align-items: center !important;
    display: flex !important;
    justify-content: center !important;
    
}

.button-primary:hover {
    background-color: var(--primary-300) !important;
    color: var(--black) !important;

}

/** END UTILIDADES **/


/** HEADER **/
.header {
    height: 120px;
}

.header > div, header > nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
}

.header > nav > ul {
    gap: 40px;
}

.header__logo_img, .footer__logo_img {
    width: 200px;
    height: 90px;
}

.nav > li > a {
    font-size: 20px !important;
    font-weight: 500 !important;
}

.nav > li > a.active {
    color: var(--primary-500) !important;
    border-bottom: 3px solid var(--primary-500) !important;
    padding: 5px;
}

.nav > li > a:hover {
    color: var(--primary-500) !important;
}

#dinamyc-title {
    transition: opacity 0.5s;
}
.oculto {
    opacity: 0;
}

/* Estilos para el menú colapsable (#mainNavCollapse) cuando está abierto en pantallas pequeñas */
#mainNavCollapse.collapse.show {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    left: 0;                 
    background-color: #ffffff;
    padding: 1rem;
    border-top: 1px solid #dee2e6;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-right: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
    box-shadow: 0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.15);
    z-index: 1020;
    border-bottom-right-radius: 0.25rem;
}

/* Estilos para los enlaces dentro del menú desplegado */
#mainNavCollapse.collapse.show .nav-link {
    padding: 0.75rem 1rem;
    display: block;
}

.navbar-toggler {
    background-color: var(--gray) !important;
    border-radius: 10px;
    padding: 0.8em;
}

.navbar-toggler:hover {
    background-color: var(--primary-100) !important;
}

/*** END - HEADER ***/

/*** FOOTER ***/
footer {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 420px !important;
    background: var(--white);
    color: var(--black);
    padding: 10px;
    align-items: center;
    align-content: center;
}

footer a {
    color: var(--tertiary-700) !important;
    text-decoration: none !important;
}

footer a:hover {
    color: var(--primary-500) !important;
}

#telefonos.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 80px;
    z-index: 8888;
}

#telefonos.whatsapp-float a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#telefonos.whatsapp-float img {
    display: block;
    width: 146px;
    height: auto;
    transition: transform 0.2s ease, filter 0.2s ease;
}

#telefonos.whatsapp-float a:hover img {
    transform: translateY(-2px) scale(1.02);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.18));
}

.footer__media--social {
    display: flex;
    gap: 15px !important;
}

.footer__media--social > div > a {
    background-color: var(--gray) !important;
    width: 64px;
    height: 64px;
    border-radius: 10px !important;
    padding: 5px !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer__media--social > div > a > i {
    color: var(--tertiary-950) !important;
    list-style: none;
}

.footer__media--social > div > a > i:hover {
    color: var(--primary-500) !important;
}

.footer__icons {
    color: var(--tertiary-950) !important;

}

/*** END FOOTER ***/

/** INICIO - HOME **/

.top-40 {
    top: 40% !important;
}

.hero-title-container, .hero-title-container-testimonio {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.home-badge {
    position: absolute; 
    top: 10px;
    right: 10px;
}

.hero-bg-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 140px;
    color: rgba(51, 51, 51, 0.1);
    text-align: center;
    line-height: 1;
    z-index: 0;
    pointer-events: none;
    white-space: nowrap;
}

.card, .card-header, .car-body, .card-footer {
    background-color: white !important;
    border: 2px white solid !important;
    border-radius: 20px !important;
}

.testimonios {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 140px;
    color: rgba(51, 51, 51, 0.1);
    text-align: center;
    line-height: 1;
    z-index: 0;
    pointer-events: none;
    white-space: nowrap;
}

.hero-bg-title div, .testimonios div {
    display: block;
}

.hero-subtitle {
    font-size: 16px;
    z-index: 1;
}

.hero-text {
    font-size: 36px;
    z-index: 1;
    color: #333;
}

.bg-home-upstairs {
    background: url('../images/new/inicio/inicio_escaleras.webp');
    height: 830px;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
}

.home-contact {
    height: 450px;
    align-items: center;
    align-content: center;
}

.home-contact-button-div > div {
    height: 112px !important;
    align-items: center;
    align-content: center;
}

.home-projects-card > div > img {
    width: 90%;
    height: 250px;
}

.home-projects-card .project-card-text {
    font-size: 15px;
} 

/*** END - HOME ***/

/*** PROYECTOS ***/
.projects-header-section {
    background-size: cover;
    background-position: center;
    height: 450px;
    width: 90%;
}

.badge-projects {
    height: 42px !important;
    border-radius: 8px !important;
    align-items: center !important;
    align-content: center !important;
    font-size: 16px;
}

.badge-projects-index {
    margin-right: 1em !important;
    font-size: 15px !important;
    padding: 1em;
    border-radius: 10px !important;
}


.background-image {
    background: url('../images/new/proyectos/slider_projects.png');
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.background-overlay {
    background-color: rgba(0, 0, 0, 0.5); /* negro con 50% opacidad */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.projects-header-title {
    font-size: 140px;
    color: rgba(255, 255, 255, 0.2);
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    white-space: nowrap;
}

.projects-header-subtitle {
    font-size: 36px;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.project-item-features {
    justify-content: center !important;
}

.pj-concepts > .concepts {
    width: 90%;
    height: 500px;
}

.pj-concepts > div > .bg-1 {
    background: url('../images/new/proyectos/tacuara/residencial_vendido/rvd_cocina.webp');
    background-size: cover;
}

.pj-concepts > div > .bg-2 {
    background: url('../images/new/proyectos/tacuara/residencial_vendido/rvd_interior.webp');
    background-size: cover;
}

.pj-concepts > div > .bg-3 {
    background: url('../images/new/proyectos/tacuara/residencial_vendido/rvd_terraza.webp');
    background-size: cover;
}

.imagen-con-overlay {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    height: 400px;
}

.imagen-con-overlay img {
    display: block;
    width: 400px;
    height: 400px;
    transition: transform 0.3s ease;
}

.imagen-con-overlay:hover img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo oscuro */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit !important; /* Matchea con rounded-5 */
}

.imagen-con-overlay:hover .overlay {
    opacity: 1;
}

.btn-ver-mas {
    background-color: white;
    color: black;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 8px;
    text-transform: uppercase;
    transition: background 0.3s, color 0.3s;
}

.btn-ver-mas:hover {
    background-color: var(--primary-500);
    color: white;
}

.project-detail-btn {
    width: 50% !important;
}

/** PROYECTOS - ROCHELLA TO INDEX **/

    .rochela-index-header h1 {
        font-size: 60px;
    }

    .rochela-index-header p {
        font-size: 22px;
    }

    .bg-rochella-to-sell-header {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('../images/new/proyectos/rochela/residencial_interno/ri_encabezado.jpg');
        background-size: cover;
        background-position: center;
        height: 625px;
        border-radius: 20px;
    }

    .bg-rochella-to-sell-pic {
        background: url('../images/new/proyectos/rochela/residencial_interno/ri_foto_principal.jpg');
        background-size: cover;
        background-position: center;
        width: 450px;
        height: 450px;
    }

    .bg-rochella-to-sell-header-text {
        font-size: 20px;
    }

    .slider-rochela, .slider-tacuara {
        height: 490px;
    }

    .rochela-index-body-img {
        width: 90%;
        height: 90%;
        background-size: cover;
        background-position: center;
    }

    .rochela-index-body-text {
        font-size: 20px;
    }

    .rochela-index-body-img-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .rochela-index-projects {
        background-color: var(--white) !important;
    }

/** PROYECTOS - TACUARA VENDIDO **/

    .bg-tacuara-header {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('../images/new/proyectos/tacuara/residencial_vendido/rvd_encabezado.webp');
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 625px;
        border-radius: 15px;
    }


    .bg-tacuara {
        background: url('../images/new/proyectos/tacuara/residencial_vendido/rvd_foto.webp');
        background-size: cover;
        background-position: center;
        width: 450px;
        height: 450px;
    }

/** PROYECTOS - G22 VENDIDO **/

    .bg-g22-header {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('../images/new/proyectos/g22/ext2.webp');
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 625px;
    }

    .bg-g22 {
        background: url('../images/new/proyectos/g22/in4.webp');
        background-size: cover;
        background-position: center;
        width: 450px;
        height: 450px;
    }

/** PROYECTOS - MALL DEL CAFE VENDIDO **/

    .bg-mall-header {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('../images/new/proyectos/mallCafe/bg-header-1.webp');
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 625px;
        border-radius: 15px;
    }

    .bg-mall {
        background: url('../images/new/proyectos/g22/in4.webp');
        background-size: cover;
        background-position: center;
        width: 450px;
        height: 450px;
    }

/*** END - PROYECTOS ***/

/*** SOBRE NOSOTROS ***/
.about-us-header-section {
    height: 800px;
    width: 90%;
    background: url('../images/new/nosotros/nosotros_encabezado.webp');
    background-size: cover;
    background-position: center;
    color: white;
}

.about-us-video-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-us-video{
    width: 100%;
    height: 100%;
}

/*** END - SOBRE NOSOTROS ***/

/*** CONTACTOS ***/

.contact-header-section {
    background-size: cover;
    background-position: center;
    height: 450px;
    width: 90%;
}

.contact-header-title {
    font-size: 140px;
    color: rgba(255, 255, 255, 0.2);
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    white-space: nowrap;
}

.contact-background-image {
    background: url('../images/new/proyectos/slider_projects.png');
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-background-overlay {
    background-color: rgba(0, 0, 0, 0.5); /* negro con 50% opacidad */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.contact-subtitle {
    font-size: 36px;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

/*** END - CONTACTOS ***/

/* WhatsApp floating button fix for all pages */
.spa-home-whatsapp {
    background-color: #1FD246 !important;
    color: #ffffff !important;
}
.spa-home-whatsapp:hover {
    color: #ffffff !important;
}



