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


/* CONTACT */
.contact {
    padding: 60px 20px;
}

.contact-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-form-side {
    flex: 1.2;
    min-width: 300px;
    background: #fff;
    border: 3px solid #1abc9c;
    border-radius: 30px;
    padding: 40px;
}

.contact-form-side h2 {
    color: #1abc9c;
    margin-bottom: 30px;
}

.contact-info-side {
    flex: 1;
    min-width: 280px;
    background: #101010;
    border-radius: 30px;
    padding: 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-side h2 {
    color: #1abc9c;
    margin-bottom: 10px;
}

.contact-info-side .info {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-side .info .icon {
    background-color: #1abc9c;
    padding: 14px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-side .info .icon img {
    width: 30px;
}

.contact-info-side .info p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

.contact-info-side .info p span {
    color: #fff;
    font-weight: 900;
    display: block;
    margin-bottom: 4px;
}

.contact-map {
    border-radius: 15px;
    overflow: hidden;
    margin-top: 10px;
}

/* FORM */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form input,
.form select,
.form textarea {
    padding: 15px;
    border-radius: 25px;
    border: none;
    background: #1abc9c;
    color: #fff;
    outline: none;
}

.form input::placeholder {
    color: #fff;
}

.form textarea::placeholder {
    color: #1abc9c;
}

.form textarea {
    width: 100%;
    height: 150px;
    margin-top: 15px;
    border-radius: 20px;
    border: 2px solid #1abc9c;
    background: transparent;
    color: #1abc9c;
    resize: none;
}

.form-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn-enviar {
    flex: 1;
    padding: 14px 20px;
    background: #888;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 15px;
    transition: 300ms;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-enviar:hover {
    background: #666;
    transform: translateY(-3px);
}

.btn-whatsapp {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: #1abc9c;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    transition: 300ms;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-whatsapp img {
    width: 22px;
}

.btn-whatsapp:hover {
    background: #16a085;
    transform: translateY(-3px);
}

.input-error {
    border: 2px solid #e74c3c !important;
}

.input-success {
    border: 2px solid #2ecc71 !important;
}

.error-message {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
}

.btn {
    border: none;
    cursor: pointer;
    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;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-form-side,
    .contact-info-side {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-side {
        padding: 20px;
    }

    .form-buttons {
        flex-direction: column;
    }
}

/* 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;
    }
}
/* ===================================================
   ATENDIMENTO NACIONAL
   =================================================== */
.atendimento-nacional {
    background: #1abc9c;
    padding: 70px 20px;
}

.atendimento-nacional__inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

/* Badge */
.an-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,0,0,0.18);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    width: fit-content;
    letter-spacing: 0.3px;
}

/* Hero: texto + mapa */
.an-hero {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.an-hero__text {
    flex: 1;
    min-width: 260px;
}

.an-hero__text h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 18px;
}

.an-hero__text p {
    color: rgba(255,255,255,0.88);
    font-size: 15px;
    line-height: 1.7;
    max-width: 420px;
}

.an-hero__map {
    flex: 0 0 auto;
    width: 280px;
    display: flex;
    justify-content: center;
}

.an-hero__map img {
    width: 100%;
    max-width: 280px;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.2));
}

/* Pulso no ponto central */
@keyframes pulseRing {
    0%   { r: 7px; opacity: 0.7; }
    100% { r: 22px; opacity: 0; }
}

.pulse-ring--1 {
    animation: pulseRing 2s ease-out infinite;
}
.pulse-ring--2 {
    animation: pulseRing 2s ease-out infinite 0.7s;
}

/* Cards */
.an-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.an-card {
    background: #fff;
    border-radius: 18px;
    padding: 24px 22px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.an-card__icon {
    background: rgba(26,188,156,0.12);
    color: #1abc9c;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.an-card strong {
    display: block;
    color: #111;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.an-card p {
    color: #555;
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0;
}

/* Regiões */
.an-regioes {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.an-regioes__title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}

.an-regioes__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.an-regioes__tags span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.4);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
    transition: background 0.2s;
}

.an-regioes__tags span:hover {
    background: rgba(255,255,255,0.25);
}

.an-tag--more {
    background: rgba(0,0,0,0.12) !important;
    border-color: rgba(255,255,255,0.25) !important;
}

/* CTAs */
.an-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.an-cta {
    flex: 1;
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
    cursor: pointer;
}

.an-cta--primary {
    background: #fff;
    color: #1abc9c;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.an-cta--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.an-cta--outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.7);
}

.an-cta--outline:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-3px);
    border-color: #fff;
}

/* Responsivo */
@media (max-width: 700px) {
    .an-hero {
        flex-direction: column;
        text-align: center;
    }
    .an-hero__text p {
        max-width: 100%;
    }
    .an-hero__map {
        width: 220px;
    }
    .an-cards {
        grid-template-columns: 1fr;
    }
    .an-ctas {
        flex-direction: column;
    }
    .an-cta {
        min-width: unset;
    }
}
