@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --font-standard: "Roboto Condensed", sans-serif;
}


/* ---------------- NAVBAR ---------------- */
.global-navbar {
    background-color: #141414;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    padding: 18px;
}

.global-navbar ul {
    gap: 140px;
    display: flex;
}

.global-navbar ul li {
    list-style: none;
}

.global-navbar ul li a {
    color: white;
    font-family: var(--font-standard);
    font-optical-sizing: auto;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 1px;
    text-decoration: none;
    transition-duration: 0.5ms;
}

.global-navbar ul li a:hover {
    border-bottom: 1px solid rgb(206, 189, 39);
}


/* ---------------- HEADER ---------------- */
.header-global {
    background: linear-gradient(0deg, rgba(20, 20, 20, 1) 16%, rgba(8, 8, 8, 1) 70%);
    height: 100vh;
    width: 100%;
    display: grid;
    align-items: center;
    grid-template-columns: repeat(3, 1fr);
}

.cta-global {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 48px;
}

.text-cta {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.title-cta {
    font-family: var(--font-standard);
    font-size: 32px;
    text-align: center;
    color: white;
}

.paragraph-cta {
    font-family: var(--font-standard);
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    color: white;
}

.btn-contact {
    width: 180px;
    padding: 12px;
    border-radius: 32px;
    border: none;
    background-color: #FFD700;
    font-family: var(--font-standard);
    font-size: 22px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.btn-contact:hover {
    transform: translateY(-5px);
}


/* ---------------- MAIN ---------------- */
.main-global {
    background: #141414;
}

.about-global {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 100px;
    align-items: center;
}

.about-group {
    display: flex;
    padding: 40px 300px 100px 300px;
    width: 100%;
    gap: 90px;
    justify-content: space-around;
    align-items: center;
    color: white;
}

.about-group-text {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about-group-text-title {
    font-size: 42px;
    font-family: var(--font-standard);
}

.about-group-text-paragraph {
    font-size: 22px;
    font-weight: 300;
    font-family: var(--font-standard);
}

.about-group-img {
    text-align: center;
}

.about-group-img img {
    height: 512px;
    border-radius: 25%;
}

.about-person {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 200px;
    margin: 0 auto;
}

.about-person-card-model {
    width: 100%;
    max-width: 300px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
}

.card-img img {
    width: 100%;
    height: auto;
    display: block;
}

.card-text {
    padding: 20px;
    color: #333;
}

.card-text-title h2 {
    margin: 0;
    font-size: 1.5rem;
    color: #1a1a1a;
}

.card-text-paragraph p {
    margin-top: 10px;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.card-links {
    padding: 15px 20px;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
}

.card-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

.card-links ul li {
    display: inline-block;
}

.card-links a img {
    width: 24px;
    height: 24px;
    transition: transform 0.2s ease;
}

.card-links a:hover img {
    transform: scale(1.1);
}

/* ---------------- MAPA ---------------- */
.location-map {
    background-color: #141414;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 84px;
}

.location-map-title {
    font-family: var(--font-standard);
    font-size: 48px;
    color: white;
}

.location-map-iframe {
    width: 50%;
    height: 35vh;
}

.location-map-iframe iframe {
    width: 100%;
    height: 100%;
}


/* ---------------- FOOTER ---------------- */
.footer-global {
    width: 100%;
    text-align: center;
    font-family: var(--font-standard);
    background-color: rgb(14, 14, 14);
    color: white;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.footer-logo img {
    height: 220px;
    width: auto;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.footer-contacts span {
    font-size: 24px;
}

.footer-contacts ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-contacts ul li {
    gap: 8px;
    list-style: none;
    display: flex;
    align-items: center;
}

.footer-bottom {
    border-top: 1px gray solid;
    padding: 12px;
    margin-top: 12px;
}


/* ---------------- WHATSAPP FIXO ---------------- */
.btn-fixed-whatsapp {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 10;
    margin: 18px;
}

.btn-fixed-whatsapp a img {
    height: 48px;
}



/* ---------------- RESPONSIVO ---------------- */
/* Até 1800px */
@media (max-width: 1800px) {
    .about-global {
        justify-content: space-between;
        gap: 200px;
    }

    .about-group {
        flex-direction: column;
        align-items: center;
    }

    .about-group-text {
        text-align: center;
    }

    .location-map {
        padding: 64px;
    }
}

/* Até 1300px */
@media (max-width: 1300px) {
    .about-group-text {
        width: 600px;
    }

    .about-person {
        width: 100%;
        padding-top: 30px;
        gap: 50px;
    }
}

/* Até 1200px */
@media (max-width: 1200px) {

    .about-group {
        margin-bottom: 100px;
    }
}

/* Até 800px */
@media (max-width: 800px) {

    .global-navbar ul li {
        display: none;
    }

    .global-navbar ul .namePage {
        display: block;
    }

    .global-navbar ul .namePage a {
        font-size: 28px;
    }

    .header-global {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-top: 48px;
        height: 100vh;
    }

    .cta-global {
        gap: 80px;
    }

    .text-cta {
        display: flex;
        flex-direction: column;
        padding: 12px;
    }

    .title-cta {
        font-size: 20px;
        text-align: center;
    }

    .space-betwen-div {
        display: none;
    }

    .main-global {
        padding-top: 50px;
    }

    .about-global {
        height: 120vh;
    }

    .about-group {
        padding: 0;
        flex-direction: column;
    }

    .about-group-img img {
        width: 85%;
        height: auto;
        border-radius: 25%;
    }

    .about-group-text {
        align-items: center;
        width: 100%;
        padding: 18px;
        gap: 32px;
    }

    .about-group-text-title {
        font-size: 42px;
    }

    .about-group-text-paragraph {
        text-align: center;
        font-size: 22px;
    }

    .about-person {
        display: none;
    }

    .location-map {
        padding: 0 0 80px 0;
    }

    .location-map-title {
        font-size: 48px;
    }

    .location-map-iframe {
        width: 85%;
    }

    .footer-top {
        flex-direction: column;
        gap: 60px;
        padding: 24px;
    }

    .footer-contacts span {
        display: none;
    }
}