﻿.dropdown-toggle::after {
    display: inline-block !important;
    margin-left: .255em !important;
    vertical-align: .255em !important;
    content: "" !important;
    border-top: .3em solid !important;
    border-right: .3em solid transparent !important;
    border-left: .3em solid transparent !important;
}

.nav-bottom-line .navbar-nav .nav-link::after {
    transition: width .3s;
    border-radius: unset;
    transform-origin: unset;
}

#productos::after {
    background-color: unset !important;
}

.dropdown-item:hover {
    background-color: #2798c8 !important;
    color: white;
}

.divCodigoBarras {
    max-width: unset !important;
    width: 100% !important;
    text-align: center !important;
}

.fontWhite {
    color: white;
}

.cursor {
    cursor: pointer;
}

section, .section-padding {
    padding: 3rem 0;
}

.noCursor {
    cursor: default;
}

.team-classic-content span:first-child {
    font-weight: bold;
}

.portfolio-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.portfolio-item {
    width: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.image-container {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

    .image-container img {
        width: 100%;
        display: block;
        transition: transform 0.4s ease;
    }

/* Overlay oscuro */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.overlay-content {
    color: #fff;
    font-size: 1.1rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

/* Hover: Zoom + mostrar overlay */
.image-container:hover img {
    transform: scale(1.05);
}

.image-container:hover .overlay {
    opacity: 1;
}

.image-container:hover .overlay-content {
    transform: translateY(0);
}

/* ✨ Brillo diagonal (rayo de luz) */
.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient( 120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100% );
    transform: skewX(-20deg);
    z-index: 2;
    pointer-events: none;
}

.image-container:hover::before {
    animation: shine-diagonal 0.9s ease-in-out forwards;
}

@keyframes shine-diagonal {
    0% {
        left: -100%;
    }

    100% {
        left: 120%;
    }
}


.card {
    position: relative;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    transition: transform 0.8s ease;
}

    .card img {
        width: 100%;
        max-width: 300px;
        transition: transform 0.8s ease;
    }

    .card p {
        margin-top: 10px;
        font-size: 16px;
    }

    /* Línea inferior animada */
    .card::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%) scaleX(0);
        transform-origin: center;
        width: 100%;
        height: 3px;
        background-color: #2798c8; /* Cambia el color si quieres */
        transition: transform 0.9s ease;
    }

    .card:hover {
        transform: scale(1.05);
    }

        .card:hover::after {
            transform: translateX(-50%) scaleX(1);
        }

.main-title {
    margin-bottom: 0rem;
}

/*html {
    scroll-behavior: smooth;
}*/

.incluye {
    color: green;
}

.noIncluye {
    color: red;
}

.iconos {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
}

.iconos img {
    width: 40px;
}

.modal-body ul {
    margin: 0 !important;
}

.incluidos {
    text-align: end;
}

/* beneficios */
.container {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    padding-left: 80px; /* espacio para el círculo */
    box-sizing: border-box;
}

.containerB {
    min-height: 100px;
}

.circle {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100px;
    height: 100px;
    background-color: #024963;
    border-radius: 50%;
    z-index: 2;
    transform: translateY(-50%);
    border: white solid 10px;
    text-align: center;
    align-content: center;
}

    .circle img {
        width: 75%;
    }

.rectangle {
    background-color: #024963;
    padding: 5px;
    border-radius: 0 10px 10px 0;
    position: relative;
    z-index: 1;
    width: 340px;
    overflow-wrap: break-word;
}

    .rectangle p {
        width: 340px;
        font-size: 0.8rem;
        padding-left: 20px;
        padding-right: 11px;
        color: white;
    }


.eraGanado {
    margin: 20px 0px;
    width: 100%;
    text-align: center;
}

    .eraGanado img {
        border-radius: 10px;
        width: 50%;
    }

    .eraGanado p {
        border-radius: 10px;
        padding: 5px;
    }

/*Iconos*/

.about-main-icon {
    position: relative;
    width: 80px;
    height: 80px;
}

.icons {
    width: 90px;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.4s ease-in;
    padding-bottom:5px;
}

    .icons.default {
        opacity: 1;
        z-index: 1;
    }

    .icons.hover {
        opacity: 0;
        z-index: 2;
    }

.about-box:hover .icons.default {
    opacity: 0;
}

.about-box:hover .icons.hover {
    opacity: 1;
}

.titleIcon {
    font-size: 0.9rem;
}

.about-box {
    padding: 10px 15px 10px;
    height: 150px;
    background: transparent;
}

.navbar-top-default {
    position: absolute;
    top: 0;
    z-index: 99;
    height: 90px;
    width: 100%;
    -webkit-transition: all .1s ease;
    -moz-transition: all .1s ease;
    -ms-transition: all .1s ease;
    -o-transition: all .1s ease;
    transition: all .1s ease;
}

.nav-link {
    color: #ffffff;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: white;
}

.awaza {
    display: none;
}

.navbar-nav a {
    font-size: 0.9rem !important;
}

.img-pc, .img-movil {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    Evita que las imágenes invisibles interfieran
}

.img-pc {
    opacity: 1;
    z-index: 2;
}

.img-movil {
    opacity: 0;
    z-index: 1;
}

.h-100vh1 {
    min-height: 100vh;
}

.bg-azul {
    background-color: #2798c8;
}

.request-form-textfield input, .request-form-textfield textarea {
    border: 1px solid #ced4da;
}

.form-control {
    padding: 0px 10px;
}







/*-------- Estilos de la portada -------------*/


/* Contenedor de la portada */
#hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    font-family: 'Raleway', sans-serif;
    background: #000;
}

    /* Imagen o video de fondo con efecto paralax (simulado con translateY) */
    #hero .background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: fill;
        filter: brightness(0.9);
        transform: translateZ(0);
        will-change: transform;
        opacity: 0.5; /* empieza invisible */
        animation: fadeIn 2s ease-in forwards, /* se ejecuta una vez al cargar */
        bgMove 20s linear infinite alternate; /* se repite para simular parallax */
        z-index: 0;
    }

@keyframes fadeIn {
    0% {
        opacity: 0.2; /* inicia en el mismo valor que el CSS base */
    }

    100% {
        opacity: 1;
    }
}



@keyframes bgMove {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(-20px) scale(1.05);
    }
}

/* Overlay negro semitransparente */
#hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 1;
}

/* Contenedor del texto */
#hero .content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /*align-items: flex-start;*/
    /*text-align: center;*/
    color: white;
    /*margin-left: 2%;*/
    top:-34%;
}

/* Estilos de las líneas de texto, con tamaños y peso iguales a original */
.line1 {
    font-weight: 300;
    font-size: 3rem;
    margin-bottom: 40px;
    text-transform: none;
    opacity: 0;
    animation: slideInLeft 1s forwards;
    animation-delay: 0.8s;
}

.line2 {
    font-weight: 500;
    font-size: 4rem;
    margin-bottom: 40px;
    text-transform: capitalize;
    opacity: 0;
    animation: zoomIn 1s forwards;
    animation-delay: 1.2s;
}

/* Texto pequeño de debajo */
.subline {
    font-weight: 200;
    font-size: 1.2rem;
    line-height: 1.3;
    max-width: 500px;
    opacity: 0;
    animation: fadeInUp 1s forwards;
    animation-delay: 2s;
}

/* Botón */
.btn-hero {
    margin-top: 2rem;
    opacity: 0;
    animation: fadeInUp 1s forwards;
    animation-delay: 2.4s;
    padding: 0.75rem 2rem;
    font-size: 1.25rem;
    border-radius: 0;
    border: 2px solid #2f75ef;
    background-color: transparent;
    color: #2f75ef;
    transition: background-color 0.3s, color 0.3s;
}

    .btn-hero:hover {
        background-color: #2f75ef;
        color: white;
    }



/* Animaciones clave (keyframes) para cada línea */

/* Línea 1 desde izquierda */
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-10px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Línea 2 zoom in */
@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Línea 3 desde derecha */
@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Línea 4 zoom in */
@keyframes zoomOut {
    0% {
        opacity: 1;
        transform: scale(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Sublinea y botón fade in + move up */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .line1 {
        font-size: 2rem;
    }

    .line2 {
        font-size: 2.3rem;
    }

    .subline {
        font-size: 1rem;
        max-width: 90vw;
    }

    .btn-hero {
        font-size: 1rem;
        padding: 0.5rem 1.5rem;
    }
}

/*---------------------*/





/*Media Querys*/

@media (max-width: 550px) {
    #hero .content {
        height: 40%;
        top: 7%;
        margin-left: -5%
    }

    #hero {
        height: 530px;
        overflow: visible;
        background: transparent;
    }

    .tp-revslider-mainul {
        height: 550px !important;
        width: 100% !important;
    }

    .h-100vh1 {
        min-height: 550px !important;
    }

    .forcefullwidth_wrapper_tp_banner {
        height: 550px !important;
    }

    .caption-title {
        font-size: 30px !important;
        top: -120px !important;
    }

    .caption-subtitle {
        font-size: 25px !important;
        top: -110px !important;
    }

    .nosotros {
        padding: 0px !important;
    }

    .contact-box {
        padding: 0px 15px !important;
    }


    .container1 {
        padding-left: 0;
    }

    .btn_sube {
        right: 30px !important;
    }


@media (min-width: 992px) {
    .text-lg-left {
        text-align: unset !important;
    }
}


@media screen and (max-width: 991px) {
    .split-container-setting, .split-container-setting.style-two, .split-container-setting.style-three {
        padding: 1rem 0 !important;
    }
}
