@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;
}

/* 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;
    }

}

/* SERVICES */
.services {
    max-width: 1200px;
    margin: 40px auto 40px auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: start;
}

.services-tittle h2{
    color: #1abc9c;
}

.services-tittle p{
    color: #000;
}

.services-item {
    display: flex;
    gap: 40px;
    align-items: center;
    background: #fff;
    border-radius: 30px 30px 30px 0px;
    padding: 30px;
    border: 3px solid #1abc9c;
    flex-wrap: wrap;
}

/* IMAGEM */
.service-image {
    flex: 1;
    min-width: 280px;
}

.service-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px 20px 20px 0px;
}

/* CONTEÚDO */
.service-content {
    flex: 2;
    min-width: 280px;
}

.service-content h3 {
    color: #1abc9c;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.description {
    color: #000;
    margin-bottom: 20px;
}

/* BENEFÍCIOS */
.benefits {
    list-style: none;
    margin-bottom: 20px;
}

.benefits p {
    margin-bottom: 8px;
    position: relative;

    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits p::before {
    position: absolute;
    left: 0;
    color: #1abc9c;
    font-weight: bold;
}

.benefits img{
    width: 20px;
}

/* BOTÕES */
.buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.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);
}

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

.secondary {
    background: transparent;
    color: #1a3c34;
    border: 2px solid #1a3c34;
}

.secondary:hover {
    background: #1a3c34;
    color: #fff;
}

/* ── Seção SEO Regiões ── */
.seo-regiao {
    padding: 60px 6%;
    background: #fff;
    color: #222;
    max-width: 1100px;
    margin: 0 auto;
}

.seo-regiao-intro h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 14px;
    color: #111;
}

.seo-regiao-intro p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 0.97rem;
}

.seo-divider {
    border: none;
    border-top: 1px solid #d8e8e4;
    margin: 32px 0;
}

.seo-regioes-wrap h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1abc9c;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.seo-icon-pin { font-size: 1.1rem; }

.seo-regioes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 30px;
}

.seo-regiao-item a {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-weight: 700;
    color: #1abc9c;
    text-decoration: none;
    font-size: 0.93rem;
    margin-bottom: 6px;
    line-height: 1.4;
}

.seo-regiao-item a:hover { text-decoration: underline; }

.seo-chevron {
    font-size: 1.1rem;
    flex-shrink: 0;
    line-height: 1.3;
}

.seo-regiao-item p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.seo-cta-bar {
    background: #f4faf8;
    border: 1px solid #c8e8df;
    border-radius: 10px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.seo-cta-icon {
    font-size: 2.2rem;
    background: #1abc9c;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.seo-cta-text {
    flex: 1;
}

.seo-cta-text strong {
    display: block;
    font-size: 1rem;
    color: #1abc9c;
    margin-bottom: 4px;
}

.seo-cta-text p {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

.seo-cta-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}

.seo-cta-btns .btn {
    text-align: center;
    min-width: 200px;
    font-size: 0.88rem;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .services {
        padding: 0px 20px;
    }

    .services-item {
        flex-direction: column;
        text-align: center;
    }

    .service-content {
        align-items: center;
    }

    .benefits li {
        text-align: left;
    }

    .buttons {
        justify-content: center;
    }
}

/* 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;
    }
}

@media (max-width: 900px) {
    .seo-regioes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .seo-regioes-grid {
        grid-template-columns: 1fr;
    }

    .seo-cta-bar {
        flex-direction: column;
        text-align: center;
    }

    .seo-cta-btns {
        width: 100%;
    }

    .seo-cta-btns .btn {
        min-width: unset;
        width: 100%;
    }
}