@charset "UTF-8";

body {
    background-color: white;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: rgb(26, 26, 26);
}

main {
    margin-top: 100px;
    flex: 1;
}


#box-tittle-sobre {
    background-color: whitesmoke;
    width: 100vw;
    padding-top: 40px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.178);
}

    #container-text-cliente {
        max-width: 1100px;
        margin: 0px auto;
        margin-top: -20px;
        margin-bottom: 30px;
    }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
    background-color: rgb(255, 255, 255);
    margin-top: 30px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    text-align: justify;
    margin: 10px;
}

.intro {
    font-size: 1.15rem;
    color: #555;
    margin: 10px;
    line-height: 1.6;
    text-align: justify;
}

.grid-clientes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    overflow-y: hidden;
    width: 90%;
    padding: 30px;
    margin: 0px auto;
}

.cliente {
    padding: 30px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.8s ease both;
    box-shadow: 0 0 15px rgba(160,160,160, 0.1);
}

.cliente:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(160, 160, 160, 0.301);
}

.cliente img {
    max-width: 100%;
    height: auto;
    background-position: center;
}

@keyframes fadeInUp {
    0% {
    opacity: 0;
    transform: translateY(20px);
    }
    100% {
    opacity: 1;
    transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .grid-clientes {
        grid-template-columns: 1fr;
        padding: 10px;
    }
}


#logo-header {
    opacity: 100%;
}

footer {
    bottom: 0;
}


