/* Misma paleta, fuente de presentación y escala de Bootstrap que el portfolio. */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.titulo {
    font-family: 'Cormorant Garamond', serif;
}

.hero {
    padding-block: clamp(3rem, 9vh, 6rem);
}

.portrait {
    display: block;
    width: 100%;
    max-width: 20rem;
    height: auto;
    margin-inline: auto;
    border-radius: 50%;
}

.hero-copy h1 {
    margin-bottom: 1rem;
}

.hero-role {
    margin-bottom: 1rem;
}

.hero-phrase {
    color: #ced4da;
    margin-bottom: 2rem;
}

.hero-actions .btn {
    min-height: 3rem;
    padding: .6875rem 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-whatsapp {
    --bs-btn-color: #212529;
    --bs-btn-bg: #25d366;
    --bs-btn-border-color: #25d366;
    --bs-btn-hover-color: #212529;
    --bs-btn-hover-bg: #20bd5a;
    --bs-btn-hover-border-color: #20bd5a;
    --bs-btn-focus-shadow-rgb: 37, 211, 102;
    --bs-btn-active-color: #212529;
    --bs-btn-active-bg: #1db054;
    --bs-btn-active-border-color: #1db054;
}

.clients {
    padding-block: 3rem;
}

.clients h2 {
    margin-bottom: 2rem;
}

.client-logos {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    gap: 2rem;
    max-width: 58rem;
    margin-inline: auto;
}

.client-logo {
    min-height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo img {
    display: block;
    width: 100%;
    max-width: 11rem;
    height: auto;
    max-height: 6rem;
    object-fit: contain;
}

.client-logo--athenea img {
    width: 5.5rem;
}

.client-logo--jdm img {
    width: 7rem;
    max-height: 7rem;
    margin-top: -1rem;
}

.site-footer {
    padding-block: 1.5rem;
    color: #ced4da;
    font-size: .875rem;
}

@media (max-width: 767.98px) {
    .hero {
        padding-block: 1.5rem;
    }

    .hero-photo {
        margin-bottom: 1.5rem;
    }

    .portrait {
        width: min(42vw, 10rem);
    }

    .hero-copy h1 {
        max-width: 22rem;
        margin-inline: auto;
        margin-bottom: .75rem;
    }

    .hero-role {
        max-width: 22rem;
        margin-inline: auto;
        margin-bottom: .75rem;
    }

    .hero-phrase {
        margin-bottom: 1.5rem;
    }

    .hero-actions .btn {
        padding-inline: 1rem;
    }

    .hero-actions {
        flex-wrap: wrap;
    }

    .clients {
        padding-block: 2rem;
    }

    .client-logos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem 1.5rem;
    }

    .client-logo img {
        max-width: 9rem;
    }
}

@media (max-height: 500px) and (min-width: 576px) {
    .hero {
        padding-block: 1.5rem;
    }

    .hero-photo {
        width: 25%;
        margin-bottom: 0;
    }

    .portrait {
        max-width: 8rem;
    }

    .hero-copy {
        width: 75%;
    }
}
