html, body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    background-color: #fff;
    color: #333;
    font-weight: 400;
}
/* Titulares con pesos específicos */
h1, h2, h3, h4, h5 {
    font-weight: 600;
    color: #111;
    margin-top: 0;
    font-family: 'Montserrat', sans-serif;
}
/* Parrafos más legibles */
p {
    font-weight: 300;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1rem;
}
/* Enlaces */
a {
    font-weight: 500;
    color: #0078D7;
    text-decoration: none;
}

    a:hover {
        color: #005A9E;
        /*  text-decoration: underline;*/
    }

html {
    scroll-behavior: smooth;
}

/* Hero principal (desktop) */
.hero-section {
    width: 100%;
    height: 100vh;
    position: relative;
}

.hero-desktop, .hero-mobile {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    align-items: center;
    justify-content: center;
}

.hero-desktop {
    background-image: url('../img/bg-home2.jpg');
}

.hero-mobile {
    background-image: url('../img/vectrasoft_home_mobile.jpg');
    display: none;
}



.hero-inner {
    text-align: center;
}

    .hero-inner img {
        padding-top: 9rem; /* 🔧 alineacion vertical */
        max-width: 900px; /* 🔧 Aumentamos el ancho visible */
        width: 90%; /* 🔧 Responsive */
        height: auto;
        animation: fadeInLeft 1s ease-in-out;
        object-fit: contain;
    }

/*from {
    opacity: 0;
    transform: translateX(-30px);
}

to {
    opacity: 1;
    transform: translateX(0);
}*/
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeInLeft {
    animation: fadeInLeft 1.2s ease-out forwards;
    animation-delay: 0.3s;
}

/* Cards institucionales */
.vectra-cards {
    background-color: #ffffff;
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
}

    .vectra-cards .container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
        max-width: 1200px;
    }

.card-item {
    width: 250px;
    padding: 1.5rem;
    text-align: center;
    border-radius: 10px;
    background-color: #f5f5f5;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

    .card-item:hover {
        transform: translateY(-5px);
    }

    .card-item img {
        max-width: 80px;
        margin-bottom: 1rem;
    }

    .card-item p {
        font-size: 1rem;
        color: #333;
    }

/* ERP + Servicios */
.erp-servicios {
    background-color: #ffffff;
    padding: 4rem 2rem;
}

    .erp-servicios .container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

.erp-item {
    width: 100%;
    max-width: 500px;
    text-align: center;
}

    .erp-item img {
        max-width: 300px;
        margin-bottom: 1rem;
        height: auto;
    }

    .erp-item h3 {
        font-size: 1.5rem;
        letter-spacing: 3px;
        margin-bottom: 0.5rem;
    }

        .erp-item h3 a {
            color: #000;
            text-decoration: none;
        }

            .erp-item h3 a:hover {
                color: #0078D7;
            }

    .erp-item p {
        font-size: 1rem;
        color: #333;
        padding: 0 1rem;
    }

/*nodos*/

.nodos-section {
    width: 100%;
    height: 100vh;
    position: relative;
}

.nodos-desktop, .hero-mobile {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    align-items: center;
    justify-content: center;
}

.nodos-desktop {
    background-image: url('../img/suiteerp-bg-desktop.jpg');
}

.nodos-mobile {
    background-image: url('../img/suiteerp-bg-mobile.jpg');
    display: none;
}



.nodos-inner {
    text-align: center;
}

    .nodos-inner img {
        padding-top: 9rem; /* 🔧 alineacion vertical */
        max-width: 900px; /* 🔧 Aumentamos el ancho visible */
        width: 90%; /* 🔧 Responsive */
        height: auto;
        animation: fadeInLeft 1s ease-in-out;
        object-fit: contain;
    }

/* Alianzas fondo */
.alianzas-section {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background-image: url('../img/bg_alianzas.jpg'); clientes-bg*/
    background-image: url('../img/clientes-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.alianzas-inner {
    text-align: center;
}

    .alianzas-inner img {
        padding-top: 9rem; /* 🔧 alineacion vertical */
        max-width: 900px; /* 🔧 Aumentamos el ancho visible */
        width: 90%;
        height: auto;
        animation: fadeInLeft 1s ease-in-out;
        object-fit: contain;
    }

.alianzas-carousel {
    background-color: transparent;
    padding: 4rem 0 2rem 0;
    margin-bottom: 0;
}

/* 🔧 Evitar salto del layout al cambiar de slide */
.alianzas-carousel .carousel-inner {
    min-height: 360px; /* Aumentá este valor si alguna imagen necesita más espacio */
}

@media (max-width: 768px) {
    .alianzas-carousel .carousel-inner {
        min-height: 700px;
    }
}

/*Tamaño imagenes carousel*/
.logo-img {
    /*height: 180px;*/
    height: auto;
    max-height: 300px; /* solo limitar este parametro height en auto para que respete la proporcion del logo*/
    object-fit: contain;
    padding: 0.5rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

.contacto {
    border-top: 1px solid transparent;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: 2rem;
    background-image: url('../img/contacto-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 8rem 2rem 10rem 2rem;
    color: black;
    min-height: 740px;
    border-top: 1px solid transparent;
}


.contacto-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    gap: 2rem;
    align-items: center;
    background-color: rgba(255, 255, 255, 0); /* Fondo blanco semitransparente, Ajustá el 0.85 a gusto*/
    padding: 2rem;
    border-radius: 10px;
}

.contacto-info {
    flex: 1 1 50%;
}

    .contacto-info h2 { 
        letter-spacing: 5px;
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .contacto-info h3 {
        font-weight: bold;
        margin-bottom: 1.5rem;
    }

    .contacto-info p {
        font-size: 1rem;
        margin: 0.5rem 0;
    }

    .contacto-info i {
        margin-right: 8px;
        color: #0078D7;
    }

    .contacto-info a {
        color: black;
        text-decoration: none;
    }

.contacto-img {
    flex: 1 1 40%;
    text-align: center;
}

    .contacto-img img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
    }

.contacto h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    color: #111;
}

.contacto h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.3rem;
    color: #111;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

@media (max-width: 576px) {
    .contacto-info h2 {
        font-size: 1.3rem; /* en lugar de 2.2rem */
        letter-spacing: 2px;
    }

    .contacto-info h3 {
        font-size: 1rem; /* en lugar de 1.3rem */
    }

    .contacto-info p {
        font-size: 0.95rem;
    }
}

.navbar-brand img {
    max-height: 50px;
    width: auto;
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1.5rem 1rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-contact {
        margin-top: 1rem;
        text-align: center !important;
    }
}

/* Estilo para los botones del carrusel */
.custom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    z-index: 10;
    cursor: pointer;
}

/* Flechas visuales del carousel */
.arrow-icon {
    font-size: 2rem;
    /* color: white;*/
    color: #0078D7; /* Azul Vectra */
    /* background-color: #00aaff;*/
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    transition: background 0.2s ease, transform 0.2s ease;
}

    .arrow-icon:hover {
        /*background-color: #0090d0;*/
        background-color: #0078D7;
        color: white;
        transform: scale(1.1);
    }

/* Posicionamiento izquierdo y derecho */
.carousel-control-prev.custom-arrow {
    left: 15px;
   /* left: 0 !important;*/
}

.carousel-control-next.custom-arrow {
    right: 15px ;
    
}



.material-symbols-outlined {
    vertical-align: middle;
    font-size: 1.2rem;
    margin-right: 8px;
    color: #0078D7;
}
/* mejora la hamburguesa visualmente (tamaño, color, etc.)*/
.navbar-toggler {
    border: none;
    outline: none;
}

.navbar-toggler-icon {
    background-color: rgba(255, 255, 255, 0.3); /*#0078D7; /* o blanco si tenés fondo oscuro */
    /*border-radius: 1px;*/
}
/*.nav-link.active {
    background-color: #e0e0e0;*/ /* o un celeste suave como #d0e9ff */
    /*color: #0078D7 !important;*/ /* o el azul Vectra */
    /*font-weight: 600;
    border-radius: 5px;
}*/


/*PAGINA NOSOTROS*/
.nosotros-header {
    background-color: #ffffff;
}

.equipo-intro h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #0078D7;
    letter-spacing: 3px;
}

/*.equipo-intro p {
    font-size: 1.1rem;
    font-weight: 400;
    color: #333;
}*/

/*.equipo-intro h2 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700;
    font-size: 2.2rem;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    color: #111;
    text-transform: uppercase;
    text-align: center;
}*/

.equipo-intro p {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
}

/* nosotros principal (desktop) */
.nosotros-section {
    width: 100%;
    height: 100vh;
    position: relative;
}

.nosotros-desktop, .hero-mobile {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    align-items: center;
    justify-content: center;
}

.nosotros-desktop {
    background-image: url('../img/bg_nosotros.jpg');
}

.nosotros-mobile {
    background-image: url('../img/bg_nosotros-m.jpg');
    display: none;
}



.nosotros-inner {
    text-align: center;
}

    .nosotros-inner img {
        padding-top: 9rem; /* 🔧 alineacion vertical */
        max-width: 900px; /* 🔧 Aumentamos el ancho visible */
        width: 90%; /* 🔧 Responsive */
        height: auto;
        animation: fadeInLeft 1s ease-in-out;
        object-fit: contain;
    }

/*Seccion equipo*/

/*.card-equipo {
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

    .card-equipo:hover {
        transform: scale(1.02);
    }

.card-overlay {
    width: 100%;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
}

    .card-overlay h3 {
        margin: 0;
        font-size: 1.4rem;
        font-weight: 600;
        font-family: 'Montserrat', sans-serif;
        text-transform: uppercase;
    }*/

/*.nuestra-historia-section {
    background-image: url('img/contacto-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 8rem 2rem 6rem 2rem;*/ /* 🟢 Más espacio arriba y abajo */
    /*min-height: 900px;*/ /* 🔧 Ajustalo si hace falta ver más del fondo */
    /* color: white;*/
/*}*/

.nuestra-historia-section {
    background-image: url('../img/contacto-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 10rem 2rem 6rem 2rem; /* Más espacio arriba para que no corte */
    /*color: white;*/
    min-height: 800px;
}

.historia-text-wrapper {
    padding-top: 2rem; /* Podés aumentar si querés bajarlo más */
}

.historia-imagen {
    margin-top: 4rem; /* Bajar la imagen */
    max-width: 100%;
    height: auto;
}

.mision-vision-section {
    background-image: url('../img/bg-nosotros.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 8rem 2rem 6rem 2rem;
}

.icono-mv {
    height: 80px;
    object-fit: contain;
}

.titulo-mv {
    letter-spacing: 5px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.descripcion-mv {
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 1rem;
}

.img-historia {
    box-shadow: none !important;
    border: none !important;
}

/*SERVICIOS*/

.servicios-section {
    width: 100%;
    height: 100vh;
    position: relative;
}

.servicios-desktop, .hero-mobile {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    align-items: center;
    justify-content: center;
}

.servicios-desktop {
    background-image: url('../img/bg_servicios.jpg');
}

.servicios-mobile {
    background-image: url('../img/bg_servicios-m.jpg');
    display: none;
}



.servicios-inner {
    text-align: center;
}

    .servicios-inner img {
        padding-top: 9rem; /* 🔧 alineacion vertical */
        max-width: 900px; /* 🔧 Aumentamos el ancho visible */
        width: 90%; /* 🔧 Responsive */
        height: auto;
        animation: fadeInLeft 1s ease-in-out;
        object-fit: contain;
    }
/*
.servicios-hero {
    background-image: url('../img/servicios-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.servicios-hero-mobile {
    background-image: url('../img/servicios-bg-mobile.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.fadeInLeft {
    animation: fadeInLeft 1.2s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}*/