@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    overflow-x: hidden;
    background-color: #1abc9c;
}

/* NAVBAR */
.header {
    width: 100%;
    top: 0;
    z-index: 10;
}

.nav {
    margin: auto;
    padding: 12px 30px;
    display: flex;
    background-color: #fff;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.logo-header img {
    width: 200px;
    height: 100px;
    object-fit: cover;
}

.menu {
    display: flex;
    gap: 25px;
    align-items: center;
}

.menu a {
    text-align: center;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: 300ms;
}

.menu a:hover {
    transform: translateY(-2px);
}

.menu .active {
    color: #1abc9c;
}

.menu .btn-contato img {
    width: 20px;
    margin-right: 8px;
}

.menu .btn-contato {
    display: flex;
    align-items: center;
    background: #1abc9c;
    color: #fff;
    padding: 10px 18px;
    border-radius: 20px;
}

/* MOBILE MENU */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 99;
}

@media (max-width: 768px) {

    .menu {
        position: absolute;
        top: 70px;
        right: 20px;
        background: #fff;
        flex-direction: column;
        width: 200px;
        padding: 20px;
        border-radius: 10px;
        display: none;
    }

    .menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
        z-index: 99;
    }

}

/* HISTORY */
.history {
    max-width: 1200px;
    margin: 100px auto 0px auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: start;
    color: #fff;
}

.history-image {
    width: 100%;
    height: 300px;
}

.history-image img {
    width: 100%;
    height: 100%;
    object-position: 50% 80%;
    object-fit: cover;
    border-radius: 20px 20px 20px 0px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* ABOUT CARDS */
/* CARDS */
.about-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 60px 20px;
}

.card {
    background: #f4f4f4;
    color: #333;
    padding: 30px 20px;
    border-radius: 0px 50px 0px 0px;
    width: 300px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
}

.card .icon img {
    width: 50%;
    margin-bottom: 10px;
    color: #1abc9c;
}

.card h3 {
    color: #1abc9c;
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
    line-height: 1.5;
}

/* STATS */
.stats {
    max-width: 1200px;
    margin: auto auto;
    padding: 40px 20px;
    color: #fff;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    text-align: center;
}

.stat {
    flex: 1;
    max-width: 150px;
}

.stat .icon img{
    width: 150px;
    margin-bottom: 10px;
}

.stat p {
    font-size: 16px;
}

.stat strong {
    display: block;
    font-size: 18px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .stats-container {
        justify-content: center;
        gap: 30px;
    }

    .stat {
        flex: 0 0 45%;
        padding: 0px 10px;
    }

    .history{
        padding: 0px 20px;
    }
}

@media (max-width: 480px) {
    .stat {
        flex: 0 0 100%;
    }
}

/* LOCALIZAÇÃO */
.location {
    max-width: 1200px;
    margin: 0px auto 50px auto;
    display: flex;
    gap: 30px;
    align-items: start;
    color: #fff;
}

.location-image {
    width: 100%;
    height: 300px;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 20px 0px 0px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}


.location iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px 0px 20px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.location-text {
    max-width: 500px;
}

.location-text h2 {
    margin-bottom: 20px;
}

.location-text p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.btn {
    padding: 12px 20px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: 300ms;
    border-radius: 5px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.secondary {
    background: #fff;
    color: #1abc9c;
}

@media (max-width: 768px) {
    .location {
        flex-direction: column;
        text-align: start;
        padding: 0px 20px;
    }

    .location-text {
        max-width: 100%;
    }
}

/* FOOTER */
.footer {
    background-color: #101010;
    color: #fff;
    padding-top: 60px;
}

.logo-footer img {
    width: 100%;
    max-width: 2000px;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.footer-container {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 20px 40px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h4 {
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col a img {
    width: 24px;
    height: 24px;
}

.footer-col a:hover {
    opacity: 0.7;
}

.socials {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 100px;
}

/* COPYRIGHT */
.footer-bottom {
    text-align: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    font-size: 13px;
}

.footer-bottom a {
    color: #1abc9c;
    text-decoration: none;
    font-weight: bold;
    transition: 300ms;
}

.footer-bottom a:hover {
    color: #ff3131;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .socials {
        align-items: center;
    }

    .footer-col h4,
    .footer-col p,
    .footer-col ul,
    .footer-col li,
    .footer-col a {
        text-align: center;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
}