* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    /*background: linear-gradient(rgba(13, 1, 32, 0.87) , rgba(51, 12, 228, 0.849));    color: #222;*/
    /*background: #fff;*/
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('assets/amigos.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white; /* si usás fondo oscuro */
    scroll-behavior: smooth;
}

.bloque {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.fondo1 {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
        url("/assets/bg/upscalemedia-transformed.jpg");
}

.fondo2 {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
        url("/assets/bg/amigos.png");
}

.fondo3 {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
        url("/assets/bg/hombre.png");
}


/* Para que las secciones respiren dentro del bloque */
.bloque .section,
.bloque .hero {
    padding-top: 60px;
    padding-bottom: 60px;
}


.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    width: 60px;
    height: 60px;
}
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    animation: pulse 2.5s infinite;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover img {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    border-radius: 5%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.whatsapp-float:hover img {
    transform: scale(1.1);
}

/*#video-bg {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -1;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); 
    z-index: -1;
}
*/

.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(13, 1, 32, 0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0);
    padding: 1rem 2rem;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar.scrolled {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled nav a {
    color: #000000;
}


/*.navbar .logo {
    font-weight: 800;
    font-size: 1.2rem;
    color: #ffffff;
}*/

.navbar nav a {
    margin-left: 5rem;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.2rem; /* <-- agranda la letra */
    letter-spacing: 1px; /* <-- separa un poco las letras (opcional) */
    text-transform: uppercase; /* <-- todo en mayúsculas (opcional) */
}

.navbar nav a:hover {
    color: #313534;
}

@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
    }

    .navbar nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .navbar nav a {
        margin-left: 0;
        font-size: 1rem;
    }
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 2rem;
    /*background-image: url('assets/hombre.png');   */ 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    background-color: black;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centro absoluto */
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra horizontalmente */
    text-align: center;
    gap: 1.2rem; /* Espacio entre elementos */
    z-index: 2;
}


.logo-hero {
    max-width: 500px; /* Ajustá según el tamaño que querés */
    height: auto;
    margin: 0 auto 1rem auto; /* agrega margen inferior */
}

.hero .btn {
    background: #b3b0ae;
    color: rgb(0, 0, 0);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 1rem;
    align-items: center; /* Centra horizontalmente */
}


.logo-hero {
    max-width: 500px; /* Ajustá según el tamaño que querés */
    height: auto;
    margin: 0 auto 1rem auto; /* agrega margen inferior */
}

.hero .btn {
    background: #b3b0ae;
    color: rgb(0, 0, 0);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 1rem;
    align-items: center; /* Centra horizontalmente */
}

@media (max-width: 480px) {
    .hero-content p {
        font-size: 1rem;
    }

    .logo-hero {
        max-width: 280px;
    }
}

.btn {
    background-color: #CE8346;
    color: rgb(8, 8, 8);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #5f5f5f;
}

.section {
    padding: 65px 20px;
    color: #ffffff;

}

.section.light {
    position: relative;
    overflow: hidden;
    color: rgb(82, 80, 80); /* o negro, según contraste con el video */
    min-height: 100vh; /* o lo que necesites */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    padding: 40px 10px;
    flex-direction: column;
    text-align: center;
}

@media (max-width: 768px) {
    #quienes-somos {
        flex-direction: column;
    }
}


.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.6); /* oscurece el video para mejor contraste */
}

.section .content {
    width: 90%;
    max-width: 4500px; /* límite opcional para pantallas grandes */
    margin: 0 auto;     /* centra horizontalmente */
    color: #fff;
    background-color: rgba(87, 85, 85, 0.452);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.section .valores {
    margin-top: 1rem;
    padding-left: 1rem;
    list-style-type: disc;
}

.section .valores li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
}

.section h3 {
    margin-top: 0.5rem;
    font-size: 1.4rem;
    color: #000000;
}

.cta-box {
    margin-top: 2rem;
    background-color: #414040;
    color: #fff;
    padding: 0.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.05rem;
    text-align: center;
}

.content {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.contentService{
    max-width: 1100px;
    margin: auto;
    text-align: center;
    color: #000000;  
}

.valores {
    text-align: left;
    margin-top: 1.5rem;
    list-style: none;
    padding-left: 0;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    flex: 1 1 250px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

@media (max-width: 480px) {
    .card {
        padding: 1rem;
        max-width: 95%;
    }

    .card h3 {
        font-size: 1.3rem;
    }

    .card p {
        font-size: 0.95rem;
    }
}


.clientes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 1rem;
    justify-items: center;
    align-items: center;
    margin-top: 1%;
}

.cliente-logo {
    max-width: 160px;
    max-height: 120px;
    padding: 10px; /* para que la sombra no se corte */
    border-radius: 10px; /* opcional, suaviza esquinas */
    transition: transform 0.4s ease, filter 0.3s ease, box-shadow 0.3s ease;
    filter: grayscale(100%) brightness(0.8);
}

.cliente-logo:hover {
    transform: scale(1.1) rotate(1deg);
    filter: grayscale(0%) brightness(1);
}



@media (max-width: 900px) {
    .clientes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .cliente-logo {
        max-width: 120px;
    }
}


form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

form input,
form textarea {
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #000000;
    border-radius: 6px;
}

.success-message {
    display: none;
    color: green;
    font-weight: bold;
}

footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 2rem;
}

.hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

@media screen and (max-width: 768px) {
    .navbar nav {
        margin-left: 0;
        font-size: 1rem;
    }

    .cards {
        flex-direction: column;
        align-items: center;
    }

    .hero-content {
        text-align: center;
        padding: 2rem;
    }

    .logo-hero {
        max-width: 80%;
    }

    .container {
        flex-direction: column !important;
    }

    .form-section,
    .info-section {
        width: 100% !important;
        padding: 20px !important;
    }
}

.info-section {
    flex: 1 1 50%;
    padding: 40px;
    background: #f0f4f8;
    border-left: 2px solid #e1e1e1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}

.info-section h3 {
    color: #414040;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.info-section ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
}

img, iframe, video {
    max-width: 100%;
    height: auto;
    display: block;
}


@media screen and (max-width: 480px) {
    .btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    h1, h2, h3 {
        font-size: 1.5rem;
    }

    .hero .btn {
        font-size: 1rem;
        padding: 10px 20px;
    }
}


.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
    }

    .video-grid iframe {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    border: none;
    }

    @media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

video::-webkit-media-controls {
    display: none !important;
}

video::-webkit-media-controls-start-playback-button {
    display: none !important;
}



.card {
    position: relative;
    padding: 1rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.432);
    max-width: 400px;
    text-align: center;
}

/*.carousel {
    position:relative;
    overflow: hidden;
    width: 80%;
    margin-top: 1rem;
}

.carousel-images {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-images img {
    width: 100%;
    border-radius: 0.5rem;
    flex-shrink: 0;
}*/


.carousel {
    overflow: hidden;
    width: 100%;
    height: auto;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

.carousel-images {
    display: flex;
    align-items: center;
    transition: transform 0.5s ease-in-out;
    gap: 1rem;
}

.carousel-images img {
    height: auto;
    max-height: 200px;
    width: auto;
    border-radius: 0.5rem;
    flex-shrink: 0;
}


.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: rgb(0, 0, 0);
    border: none;
    font-size: 1.5rem;
    padding: 0.5rem;
    cursor: pointer;
    z-index: 1;
}

.card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.card p {
    margin: 0;
    font-size: 1rem;
    color: #333;
}

.card img.logo-hero {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 3rem;
}

.card ul.valores {
    list-style: none;
    padding: 0;
    margin-top: 0;
    text-align: center;
    max-width: 500px;
    margin-top: 3rem;
}

.card ul.valores li {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.valoresredes {
    margin-top: 1rem;
    padding-left: 1.2rem;
    list-style-type: disc;
    color: #000000;
}



.valoresredes li {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-align: left;
}

.prev {
    left: 5px;
}

.next {
    right: 5px;
}


.planes-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: auto;
}

.card {
    background: rgba(255, 255, 255, 0.699);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-logo {
    max-width: 120px;
    margin-bottom: 1rem;
}

.card-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    text-align: left;
}

.card-list li {
    margin: 0.5rem 0;
    padding-left: 20px;
    position: relative;
    color: #414040;
}

.card-list li::before {
    content: "-";
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: bold;
}

.card-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: auto; /* empuja el botón hacia abajo */
}

.card-logos img {
    max-width: 80px; /* ajustá según tu diseño */
    max-height: 60px; /* límite de altura */
    height: auto;
    width: auto;
    object-fit: contain; /* mantiene proporción */
    flex-shrink: 0; /* evita que se achique más de lo necesario */
}



.btn-consultar {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #CE8346;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease;
    margin-top: auto; /* empuja el botón hacia abajo */

}

.btn-consultar:hover {
    background-color: #a56a38;
}

@media (max-width: 900px) {
    .planes-section {
        grid-template-columns: 1fr;
    }
}









