
@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
    font-family: 'Frutiger Com';
    src: url('ruta/a/FrutigerCom-Regular.woff2') format('woff2'),
        url('ruta/a/FrutigerCom-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
    font-family: sans-serif;
}

.navbar {
    position: relative;
    background-color: #3e2775;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    height:110px;
    z-index: 50;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 30px
}

.logo img {
    height: 110px; /* ajustá según tu imagen */
    width: auto;
}
.nav-container {
    width: 100%;
    display: flex;
    justify-content: center;

}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    transition: background 0.3s;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 16px
}

.nav-links a:hover {
    background-color: #67509c;
    border-radius: 4px;
}

/* Responsive */
.toggle {
    display: none;
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        position: absolute;
        top: 110px;
        left: 0;
        width: 100%;
        background-color: #3e2775;
        display: none;
        padding: 1rem 0;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .toggle {
        display: block;
        position: absolute;
        right: 2rem;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
    }

    .nav-container {
        justify-content: flex-end;
    }
}
.slider-container {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    width: 300%; /* o ajustado al número de slides */
    height: 100%;
    transition: transform 0.5s ease;
}

.slide {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Oscurece la imagen */
    z-index: 1;
}

.slider-content-box {
    position: absolute;
    top: 25%;           /* ajuste vertical */
    left: 10%;           /* margen izquierdo */
    max-width: 500px;   /* ancho máximo prolijo */
    padding: 20px;
    color: #fff;
    text-align: left;
    z-index: 2;
    border-radius: 8px; /* esquinas redondeadas */
}

.slider-content-box h1 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    color: #fff;
    letter-spacing: 0.5px;
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-style: normal;

}

.slider-content-box p {
    font-size: 1.2rem;
    line-height: 1.4;
    font-family: 'Frutiger Com', sans-serif;
}
.slide {
    width: 100vw;
    height: 100vh;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color:#67509c;
    border-radius: 50%;
    border: 2px solid #67509c;
    ;
    cursor: pointer;
    user-select: none;
    padding: 0;
    z-index: 10;
    /* Aquí no ponemos position: relative porque ya es absolute */
    font-size: 0;
    line-height: 0;
    color: transparent;
}


.arrow::before,
.arrow::after {
    content: "";
    position: absolute;
    width: 3px;
    height: 16px;
    background-color: #fff;
    ;
    border-radius: 2px;
    transition: background-color 0.3s ease;
    top: 50%;
    left: 50%;
    transform-origin: center center;

}

/* Flecha izquierda < */
.arrow.left::before {
    /* Más arriba y a la izquierda */
    transform: translate(calc(-50% - 2px), calc(-50% - 5px)) rotate(45deg);
}

.arrow.left::after {
    /* Más abajo y a la izquierda */
    transform: translate(calc(-50% - 2px), calc(-50% + 5px)) rotate(-45deg);
}

/* Flecha derecha > */
.arrow.right::before {
    /* Más arriba y a la derecha */
    transform: translate(calc(-50% + 2px), calc(-50% - 5px)) rotate(-45deg);
}

.arrow.right::after {
    /* Más abajo y a la derecha */
    transform: translate(calc(-50% + 2px), calc(-50% + 5px)) rotate(45deg);
}
.arrow:hover {
    background: rgba(255, 255, 255, 0.35);
}

.arrow:hover::before,
.arrow:hover::after {
    background-color: #eee;
}
.arrow.left {
    left: 20px;
}

.arrow.right {
    right: 20px;
}
/* PRESENTACIÓN GENERAL */
.presentacion {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
 
    padding: 4rem 5%;
    color: #333;
    flex-wrap: wrap;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fff;



}


/* TEXTO IZQUIERDO */
.contenido-empresa {
    flex: 1 1 60%;
    padding: 2rem;
}

.contenido-empresa h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    letter-spacing: 0.5px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-style: normal;
    background-color:  #3e2775;
    display: inline-block;   /* Para que el ancho se ajuste al texto */
    padding: 0.3em 0.5em;   /* Padding pequeño para que el fondo no sea muy grande */
    border-radius: 10px;     /* Opcional: bordes redondeados */
}

.contenido-empresa p {
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: justify;
    color: #555;
}

/* CUADRO DE CONTACTO MODERNO */
.info-contacto {
    flex: 0 0 260px;
    background-color: #ffffff;
    border: 1px solid #3e2775;
    border-left: 5px solid #3e2775;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: fit-content;
    transition: box-shadow 0.3s ease;
}

.info-contacto:hover {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.info-contacto h3 {
    font-size: 1.4rem;
    color: #67509c;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #67509c;
    padding-bottom: 0.5rem;
}

.info-contacto p {
    font-size: 0.95rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-contacto p::before {

    display: inline-block;
    margin-right: 0.5rem;
    font-size: 1rem;
    color: #007BFF;
}

.info-contacto p:nth-of-type(2)::before {

}

.redes {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.redes a {
    color: #007BFF;
    text-decoration: none;
    transition: color 0.3s;
}

.redes a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .presentacion {
        flex-direction: column;
    }

    .contenido-empresa,
    .info-contacto {
        flex: 1 1 100%;
    }

    .info-contacto {
        margin-top: 2rem;
        width: 100%;
    }
}

.redes a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    text-decoration: none;
    color: #67509c;
}

.redes a i {
    font-size: 1.2rem;
    color: #67509c;
}

.redes a:hover {
    color: #3e2775;
}
/* Estado inicial oculto */
.animar {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}

/* Cuando entra en vista */
.animar.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Diferente dirección por clase opcional */
.desde-izquierda {
    transform: translateX(-60px);
}

.desde-derecha {
    transform: translateX(60px);
}

.visible.desde-izquierda {
    transform: translateX(0);
}

.visible.desde-derecha {
    transform: translateX(0);
}
.logos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* centra en desktop y móvil */
    gap: 2rem;
    padding: 5rem 1rem;
    text-align: center;
    background-color: #f5f5f5;

}

.logos-container img {
    max-height: 140px;
    width: auto;
    object-fit: contain;
    transition: filter 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    flex: 1 1 200px;
    max-width: 250px;
    filter: grayscale(30%);
}

/* En móvil */
@media (max-width: 600px) {
    .logos-container img {
        flex: 0 0 auto;      /* que no crezca ni encoga */
        max-width: 250px;    /* ancho fijo más pequeño */
        margin: 0 auto;      /* para centrar la imagen dentro del contenedor */
        display: block;      /* necesario para margin auto horizontal */
    }
}

.logos-container img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Responsive: en pantallas chicas, imágenes ocupan 100% del contenedor */
@media (max-width: 600px) {
    .logos-container img {
        flex: 1 1 100%;
        max-width: 300px;
    }
}
.logos-container img {
    max-height:400px;   /* antes 80px, ahora más grande */
    width: auto;
    object-fit: contain;
    transition: filter 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    flex: 1 1 200px;     /* base mínima más grande */
    max-width: 250px;    /* límite ancho mayor */
    padding: 20px
}

/* Responsive para móviles */
@media (max-width: 600px) {
    .logos-container img {
        flex: 1 1 100%;
        max-width: 350px;  /* imágenes más grandes en móvil */
    }
}
.logos-container h2{
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    letter-spacing: 0.5px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-style: normal;
    display: inline-block;   /* Para que el ancho se ajuste al texto */
    background-color: #3e2775;  /* Color de fondo que quieras */
    padding: 0.3em 0.5em;   /* Padding pequeño para que el fondo no sea muy grande */
    border-radius: 10px;     /* Opcional: bordes redondeados */
    margin-bottom: 40px;


}

.limpiar{
    clear: both
}
.zonas-distribucion-dos-columnas {
    background-color:  #f5f5f5;
    ;
    padding: 4rem 1rem;
    text-align: center;
}

.titulo-zonas {
    display: inline-block;
    background-color: #67509c;
    padding: 0.4em 1em;
    border-radius: 8px;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 3rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.zonas-contenedor {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.departamentos,
.lugares {
    flex: 1 1 350px;
    border-radius: 10px;
    padding: 2rem;
}
.departamentos h3,
.lugares h3 {
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    color: #222;
    border-bottom: 2px solid #67509c;
    display: inline-block;
    padding-bottom: 0.3rem;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

li {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    text-align: left;
    display: flex;
    align-items: center;
    color: #444;
}

li i {
    color: #67509c;
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.estadisticas {
    position: relative;
    background-image: url('../img/IMG_9982.jpg');
    background-size: cover;
    background-position: center;
    padding: 6rem 1rem;
    color: white;
    text-align: center;
    overflow: hidden;
}

.estadisticas .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* filtro oscuro */
    z-index: 1;
}
.contenedor-estadisticas {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Siempre 3 columnas */
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    justify-items: center;
    align-items: center;
    padding: 0 1rem;
}

.bloque {
    background-color: #3e2775; /* fondo opcional */
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    max-width: 280px;
    width: 100%;

}

.numero {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    display: block;
    margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
    .contenedor-estadisticas {
        grid-template-columns: repeat(2, 1fr); /* 2 por fila */
    }
}

@media (max-width: 480px) {
    .contenedor-estadisticas {
        grid-template-columns: 1fr; /* 1 por fila */
    }
}

.bloqueEspecial{
    background-color: #3e2775; /* fondo opcional */
    padding: 2.4rem;
    border-radius: 10px;
    text-align: center;
    max-width: 240px;
    width: 100%;

}

.deposito img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 6px 12px #333;

}

.deposito:hover img {
    transform: scale(1.03);

}

.depositos {
    padding: 5rem 1rem;
    text-align: center;
    background-color: #67509c;

}

.titulo-seccion {
    display: inline-block;
    background-color: #FFF;
    padding: 0.5em 1em;
    border-radius: 8px;
    font-size: 2rem;
    color: #67509c;
    margin-bottom: 3rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contenedor-depositos {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.deposito {
    flex: 1 1 300px;
    max-width: 450px;
    padding: 1rem;
    border-radius: 10px;

}

.deposito p {
    margin-top: 1rem;
    font-weight: 500;
    font-family: "Montserrat Alternates", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    color:#fff;
}
/* Animaciones scroll */
.fade-left,
.fade-right {
    opacity: 0;
    transform: translateX(0);
    transition: all 0.8s ease;
}

.fade-left {
    transform: translateX(-50px);
}

.fade-right {
    transform: translateX(50px);
}

.fade-in {
    opacity: 1;
    transform: translateX(0);
}

.seccion-contacto {
    background-color: #f7f7f7;
    padding: 4rem 1rem;
    text-align: center;
}

.formulario-contacto {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.titulo-seccionContacto {
    background-color: #3e2775;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    display: inline-block;
    font-size: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    color:white
}

.campo {
    margin-bottom: 1.5rem;
}

.campo label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.campo input,
.campo textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    transition: border 0.3s;
}

.campo input:focus,
.campo textarea:focus {
    border-color: #ffd54f;
    outline: none;
}

.btn-enviar {
    background-color: #67509c;
    color: #fff;
    font-weight: bold;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn-enviar:hover {
    background-color: #fbc02d;
}

.zona-distribucion {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px;
    background-color: #3e2775;
    gap: 20px;
}

.titulo-zona {
    width: 100%;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    margin-top:10px;
    color: #fff;
    letter-spacing: 0.5px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-style: normal;
    padding: 0.3em 0.5em;   /* Padding pequeño para que el fondo no sea muy grande */
}
h3{
    color:#3e2775;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 26px
}
.card {
    flex: 1;
    max-width:30%;
    background-color: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    text-align: center;
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
}
.ciudades {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.ciudades li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #67509c;
}

.ciudades li:last-child {
    border-bottom: none;
}

.ciudades li {
    color: #333; /* Azul oscuro, por ejemplo */
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.ciudades {
    list-style: none;
    padding: 0;
}

.ciudades li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #333;
}

.ciudades li::before {
    content: "➤"; /* Podés cambiarla por →, ➔, ▶, etc. */
    position: absolute;
    left: 0;
    color: #67509c; /* azul */
    font-size: 1rem;
}

/* Responsive: tablets (2 columnas) */
@media (max-width: 900px) {
    .card {
        flex: 1 1 45%;
        max-width: 45%;
    }
}

/* Responsive: móviles (1 columna) */
@media (max-width: 600px) {
    .card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

.imagen-circular {
    border-radius: 50%;
    object-fit: cover; /* Asegura que la imagen cubra el área sin distorsionarse */
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    width: 300px;
    height:300px;

}
.contenedor-principal {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contenedor-imagenes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8rem;
    padding: 2rem 2rem;
    text-align: center;
}
.centro-logistico {
    padding: 40px;
    background-color: #3e2775;
}


.imagen-con-titulo {
    position: relative;
    display: inline-block;
    text-align: center;
}

.titulo-curvado {
    position: absolute;
    top: -70px; /* Ajusta la posición del título */
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px;
    color:white
}

.tituloDeposito{
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    margin-top:20px;
    color: #3e2775;
    letter-spacing: 0.5px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-style: normal;
    background-color:  #fff;
    display: inline-block;   /* Para que el ancho se ajuste al texto */
    padding: 0.3em 0.5em;   /* Padding pequeño para que el fondo no sea muy grande */
    border-radius: 10px;     /* Opcional: bordes redondeados */

}

.contacto-flotante {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    z-index: 1000;
    cursor: pointer;
}

.burbuja-texto {
    background: white;
    padding: 8px 15px;
    border-radius: 20px;
    margin-right: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: sans-serif;
    font-size: 16px;
    color: #333;
    white-space: nowrap;
}

.icono-contacto {
    background-color: #67509c;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color:white
}

.icono-contacto svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.contacto-flotante:hover .burbuja-texto {
    transform: translateX(-5px);
    transition: transform 0.2s ease-in-out;
}
h4{
    font-size: 1rem;
    transition: background 0.3s;
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 16px
}

.slide-1 { background-image: url('../img/depositoPrincipal.jpg'); }
.slide-2 { background-image: url('../img/IMG_9976.jpg'); }
.slide-3 { background-image: url('../img/banner2.jpg'); }
.slide-4 { background-image: url('../img/banner3.jpg'); }

/* MÓVIL - sobrescribe con media query */
@media (max-width: 768px) {
  .slide-1 { background-image: url('../img/principalcel2.jpg'); }
  .slide-2 { background-image: url('../img/principalcel.jpg'); }
  .slide-3 { background-image: url('../img/principalcel3.jpg'); }
  .slide-4 { background-image: url('../img/11.jpg'); }
}