* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f4f1ed;
    color: #2b2b2b;
}

/* NAV */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    transition: .4s ease;
    color: white;


    /* estado inicial (topo) */
    background: transparent;
}

/* quando rolar página */
.nav.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.nav.scrolled a {
    color: #333;
}

.nav.scrolled .logo {
    color: #333;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: white;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.btn-nav {
    background: #3f6b5b;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 20px;
    cursor: pointer;
}

/* HERO */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 90px;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    background: linear-gradient(90deg,
            rgba(30, 30, 30, 0.75) 0%,
            rgba(30, 30, 30, 0.55) 35%,
            rgba(30, 30, 30, 0.25) 65%,
            rgba(30, 30, 30, 0.08) 100%);

    z-index: 1;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 35% 70%;
    pointer-events: none;
    z-index: 0;
}


.hero-text {
    position: relative;
    z-index: 2;
    max-width: 520px;
    color: white;
}


.tag {
    letter-spacing: 2px;
    font-size: 12px;
    opacity: .8;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    margin: 20px 0;
}

.hero p {
    line-height: 1.6;
    opacity: .9;
}

.hero-buttons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.hero-location{
    margin-top:18px;
    display:flex;
    flex-direction:column;
    gap:6px;
    font-size:14px;
    color: rgba(255,255,255,0.9);
}

.hero-location-item{
    display:flex;
    align-items:center;
    gap:8px;
}

.hero-location i{
    width:16px;
    height:16px;
}


.btn-primary {
    background: #3f6b5b;
    color: white;
    border: none;
    padding: 14px 22px;
    border-radius: 8px;
    cursor: pointer;
}

.btn-outline {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 14px 22px;
    border-radius: 8px;
    cursor: pointer;
}

/* remover sublinhado quando .btn-outline for um link */
.btn-outline,
.btn-outline:link,
.btn-outline:visited {
    text-decoration: none;
    display: inline-block;
}

.btn-outline:focus,
.btn-outline:active {
    outline: none;
}

/* animação entrada */
.hero-text {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
    animation-delay: .4s;
}

.stats {
    display: flex;
    gap: 80px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #4a6b57;
    font-weight: 600;
    letter-spacing: 1px;
}

.stat p {
    font-size: 14px;
    color: #6b6b6b;
    margin-top: 5px;
}



@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.btn-primary,
.btn-outline,
.btn-nav {
    transition: .3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.btn-outline:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


/* SOBRE */
.sobre {
    padding: 120px 80px;
    background: #fff;
}

.sobre-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.sobre-img img {
    width: 90%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.sobre-text {
    max-width: 520px;
}

.mini {
    font-size: 12px;
    letter-spacing: 2px;
    color: #3f6b5b;
    ;
}

.sobre-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin: 18px 0;
}

.sobre-text p {
    margin-bottom: 14px;
    line-height: 1.6;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* SERVIÇOS */
.servicos {
    padding: 120px 80px;
    background: #f6f2ee;
    text-align: center;
}

.servicos-top h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    margin-top: 10px;
}

.servicos-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* card */
.servico-card,
.abordagem-card,
.ajuda-card,
.contato-form {
    background: white;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06), 0 30px 60px rgba(0, 0, 0, 0.04);
    transition: .35s;
}

.servico-card {
    padding: 40px 30px;
    text-align: left;
}

.servico-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.servico-card p {
    opacity: .8;
    line-height: 1.6;
}

/* hover premium */
.servico-card:hover,
.abordagem-card:hover,
.ajuda-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}


/* ABORDAGEM */
.abordagem {
    padding: 120px 80px;
    background: #efe8e1;
    text-align: center;
}

.abordagem-top {
    max-width: 700px;
    margin: auto;
}

.abordagem-top h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    margin: 15px 0;
}

.abordagem-top p {
    opacity: .8;
}

/* GRID */
.abordagem-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* CARD */
.abordagem-card {
    padding: 35px 25px;
    text-align: left;
}

.icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: #eef3f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon svg {
    width: 22px;
    height: 22px;
    stroke: #3f6b5b;
    stroke-width: 1.5;
}

.abordagem-card h3 {
    margin-bottom: 10px;
}

.abordagem-card h3::after {
    content: "";
    display: block;
    width: 28px;
    height: 2px;
    background: #3f6b5b;
    margin-top: 8px;
    opacity: .4;
}

.abordagem-card p {
    opacity: .75;
    line-height: 1.5;
}

.card-highlight {
    font-size: 14px;
    font-weight: 500;
    color: #3a3a3a;
    margin-bottom: 6px;
    line-height: 1.5;
}

.card-desc {
    font-size: 13px;
    color: #8a8a8a;
    line-height: 1.6;
}


/* AJUDA */
.ajuda {
    padding: 120px 80px;
    background: #f6f2ee;
    text-align: center;
}

.ajuda-top {
    max-width: 650px;
    margin: auto;
}

.ajuda-top h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    margin: 15px 0;
}

.ajuda-top p {
    opacity: .8;
}

/* GRID */
.ajuda-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* CARD */
.ajuda-card {
    padding: 35px 28px;
    text-align: left;
}

.ajuda-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.ajuda-card p {
    opacity: .75;
    line-height: 1.5;
}


/* CONTATO */
.contato {
    padding: 120px 80px;
    background: #efe8e1;
}

.contato-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* TEXTO */
.contato-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin: 15px 0;
}

.contato-text p {
    opacity: .8;
    line-height: 1.6;
    margin-bottom: 25px;
}

.contato-info {
    list-style: none;
    padding: 0;
}

.contato-info li {
    margin-bottom: 10px;
    font-size: 14px;
    opacity: .9;
}

/* FORM */
.contato-form {
    padding: 35px;
}

.contato-form label {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    margin-bottom: 15px;
}

.contato-form input,
.contato-form textarea {
    margin-top: 6px;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-family: 'Inter', sans-serif;
}

.contato-form textarea {
    min-height: 120px;
    resize: none;
}

.contato-form button {
    margin-top: 10px;
    width: 100%;
}

section {
    padding: 140px 80px;
}

h1,
h2 {
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 42px;
}

/* LISTA CONTATO */
.contact-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* ITEM */
.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    color: #5c5c5c;
}

/* ÍCONE FUNDO */
.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: #dfe8e4;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    /* remove 'listra' no Android */
}

/* evitar outline azul em alguns navegadores/móveis ao focar o link */
.contact-item a:focus,
.contact-item a:active {
    outline: none;
    box-shadow: none;
}

/* ÍCONE */
.contact-icon svg {
    width: 20px;
    height: 20px;
    stroke: #3f6b5b;
    stroke-width: 1.8;
}

/* SECTION */
.depoimentos {
    padding: 140px 80px;
    background: #f8f6f3;
    text-align: center;
}

.depoimentos-header {
    max-width: 700px;
    margin: auto;
}

.depoimentos-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin: 15px 0;
}

/* GRID */
.depoimentos-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* CARD */
.depoimento-card {
    background: white;
    padding: 35px;
    border-radius: 22px;
    text-align: left;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.06),
        0 40px 80px rgba(0, 0, 0, 0.04);

    transition: .35s;
}

.depoimento-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.stars {
    color: #f5b301;
    margin-bottom: 15px;
    font-size: 18px;
    letter-spacing: 3px;
}

.depoimento-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}

.author {
    margin-top: 18px;
    font-weight: 600;
    color: #3f6b5b;
    font-size: 14px;
}

#form-feedback {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0;
    transition: opacity .3s ease;
}

#form-feedback.success {
    color: #3f6b5b;
    opacity: 1;
}

#form-feedback.error {
    color: #d64545;
    opacity: 1;
}

/* ========================= */
/* WPP FLUTUANTE */
/* ========================= */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;

    width: 58px;
    height: 58px;

    background: #25D366;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 10px 25px rgba(0,0,0,0.2);

    z-index: 999;

    transition: transform .25s ease, box-shadow .25s ease;
}

.whatsapp-float svg {
    width: 26px;
    height: 26px;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}



/* ========================= */
/* RESPONSIVO MOBILE */
/* ========================= */

@media (max-width:900px) {

    /* NAV */
    .nav {
        padding: 18px 25px;
    }

    nav {
        display: none;
    }

    .btn-nav {
        display: none;
    }

    /* HERO */
    .hero {
        padding: 0 20px;
        height: 75vh;
        align-items: center;
        justify-content: center;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 1.05;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        width: 100%;
        padding: 12px 16px;
    }

    .hero-text {
        max-width: 100%;
        padding: 8px 0;
        text-align: left;
    }

    .hero p {
        font-size: 15px;
    }

    /* ajustar posição da imagem em telas pequenas para mostrar o rosto */
    .hero-img {
        object-position: 35% 80%;
    }

    /* exibir botão principal de agendamento no mobile */
    .btn-nav {
        display: block;
    }

    /* SOBRE */
    .sobre {
        padding: 80px 25px;
    }

    .sobre-container {
        flex-direction: column;
        text-align: center;
    }

    .sobre-img img {
        width: 100%;
        max-width: 380px;
    }

    .sobre-text {
        max-width: 100%;
    }

    /* ABORDAGEM */
    .abordagem {
        padding: 80px 25px;
    }

    /* AJUDA */
    .ajuda {
        padding: 80px 25px;
    }

    /* CONTATO */
    .contato {
        padding: 80px 25px;
    }

    .contato-container {
        grid-template-columns: 1fr;
    }

    .contato-text {
        text-align: center;
    }

    /* GERAL - TÍTULOS */
    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 28px;
        line-height: 1.2;
    }

    /* SERVIÇOS PREMIUM MOBILE */
    .servicos-premium {
        padding: 80px 25px;
    }

    .servicos-header h2 {
        font-size: 28px;
    }

    .servicos-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
        margin-top: 40px;
    }

    /* GRIDS RESPONSIVOS */
    .abordagem-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 30px;
    }

    .abordagem-card {
        padding: 24px 16px;
    }

    .abordagem-top h2 {
        font-size: 28px;
    }

    .ajuda-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 30px;
    }

    .ajuda-card {
        padding: 24px 16px;
    }

    .ajuda-top h2 {
        font-size: 28px;
    }

    .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 30px;
    }

    /* CONTACT LIST MOBILE */
    .contact-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-top: 24px;
    }

    .contact-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        font-size: 14px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* TAG E MINI */
    .tag {
        font-size: 11px;
    }

    .mini {
        font-size: 11px;
    }

    /* BOTÕES */
    .btn-primary,
    .btn-outline {
        padding: 12px 16px;
        font-size: 14px;
    }
}


/* SERVIÇOS PREMIUM */
.servicos-premium {
    padding: 140px 80px;
    background: #f5f2ee;
    text-align: center;
}

.servicos-header {
    max-width: 700px;
    margin: auto;
}

.servicos-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    margin: 15px 0;
}

.servicos-header p {
    opacity: .8;
}

/* GRID */
#servicos .servicos-grid {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width:900px) {
    #servicos .servicos-grid {
        grid-template-columns: 1fr;
    }
}

/* CARD */
.servico-item {
    background: white;
    padding: 35px;
    border-radius: 20px;
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: .35s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.icon {
    font-size: 26px;
    margin-bottom: 15px;
}

.servico-item h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.servico-item p {
    opacity: .7;
    line-height: 1.6;
}

/* HOVER PREMIUM */
.servico-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

/* ========================= */
/* TABLET LANDSCAPE (768px) */
/* ========================= */
@media (max-width: 768px) {
    /* PADDING GERAL */
    section {
        padding: 100px 40px;
    }

    /* NAV */
    .nav {
        padding: 16px 20px;
    }

    /* HERO */
    .hero {
        padding: 0 20px;
        height: 70vh;
    }

    .hero h1 {
        font-size: 38px;
        line-height: 1.1;
    }

    .hero p {
        font-size: 16px;
    }

    /* SOBRE */
    .sobre {
        padding: 80px 40px;
    }

    .sobre-container {
        gap: 40px;
    }

    .sobre-img img {
        width: 100%;
        max-width: 500px;
    }

    .sobre-text h2 {
        font-size: 32px;
    }

    .stats {
        gap: 50px;
    }

    /* ABORDAGEM */
    .abordagem {
        padding: 80px 40px;
    }

    .abordagem-top h2 {
        font-size: 32px;
    }

    .abordagem-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* SERVIÇOS */
    .servicos-premium {
        padding: 80px 40px;
    }

    .servicos-header h2 {
        font-size: 36px;
    }

    #servicos .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 50px;
    }

    /* AJUDA */
    .ajuda {
        padding: 80px 40px;
    }

    .ajuda-top h2 {
        font-size: 32px;
    }

    .ajuda-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* DEPOIMENTOS */
    .depoimentos {
        padding: 80px 40px;
    }

    .depoimentos-header h2 {
        font-size: 36px;
    }

    .depoimentos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* CONTATO */
    .contato {
        padding: 80px 40px;
    }

    .contato-text h2 {
        font-size: 32px;
    }

    /* TÍTULOS */
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 32px;
    }
}

/* ========================= */
/* TABLET PEQUENO (600px) */
/* ========================= */
@media (max-width: 600px) {
    /* PADDING GERAL */
    section {
        padding: 70px 25px;
    }

    /* NAV */
    .nav {
        padding: 14px 18px;
    }

    .logo {
        font-size: 16px;
    }

    nav a {
        display: none;
    }

    .btn-nav {
        padding: 8px 14px;
        font-size: 12px;
    }

    /* HERO */
    .hero {
        padding: 0 15px;
        height: 65vh;
        justify-content: center;
    }

    .hero h1 {
        font-size: 28px;
        line-height: 1.15;
        margin: 12px 0;
    }

    .hero p {
        font-size: 14px;
        line-height: 1.5;
    }

    .tag {
        font-size: 10px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }

    .hero-buttons button,
    .hero-buttons a {
        padding: 10px 12px;
        font-size: 13px;
    }

    .hero-location {
        margin-top: 12px;
        gap: 4px;
        font-size: 12px;
    }

    /* SOBRE */
    .sobre {
        padding: 60px 20px;
    }

    .sobre-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .sobre-img img {
        width: 100%;
        max-width: 350px;
    }

    .sobre-text {
        max-width: 100%;
    }

    .sobre-text h2 {
        font-size: 24px;
    }

    .sobre-text p {
        font-size: 14px;
        line-height: 1.5;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
    }

    .stat h3 {
        font-size: 22px;
    }

    .stat p {
        font-size: 12px;
    }

    /* MINI */
    .mini {
        font-size: 10px;
    }

    /* ABORDAGEM */
    .abordagem {
        padding: 60px 20px;
    }

    .abordagem-top h2 {
        font-size: 24px;
    }

    .abordagem-top p {
        font-size: 14px;
    }

    .abordagem-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 25px;
    }

    .abordagem-card {
        padding: 18px 12px;
    }

    .abordagem-card h3 {
        font-size: 16px;
    }

    .abordagem-card p {
        font-size: 13px;
    }

    .icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }

    .icon svg {
        width: 18px;
        height: 18px;
    }

    /* SERVIÇOS */
    .servicos-premium {
        padding: 60px 20px;
    }

    .servicos-header h2 {
        font-size: 24px;
    }

    .servicos-header p {
        font-size: 14px;
    }

    #servicos .servicos-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 30px;
    }

    .servico-item {
        padding: 20px 16px;
    }

    .servico-item h3 {
        font-size: 16px;
    }

    .servico-item p {
        font-size: 13px;
    }

    /* AJUDA */
    .ajuda {
        padding: 60px 20px;
    }

    .ajuda-top h2 {
        font-size: 24px;
    }

    .ajuda-top p {
        font-size: 14px;
    }

    .ajuda-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ajuda-card {
        padding: 18px 14px;
    }

    /* DEPOIMENTOS */
    .depoimentos {
        padding: 60px 20px;
    }

    .depoimentos-header h2 {
        font-size: 24px;
    }

    .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 25px;
    }

    .depoimento-card {
        padding: 20px;
    }

    .depoimento-card p {
        font-size: 13px;
    }

    .stars {
        font-size: 14px;
    }

    /* CONTATO */
    .contato {
        padding: 60px 20px;
    }

    .contato-container {
        gap: 30px;
    }

    .contato-text h2 {
        font-size: 24px;
        text-align: center;
    }

    .contact-list {
        gap: 12px;
        margin-top: 20px;
    }

    .contact-item {
        font-size: 13px;
        gap: 10px;
    }

    .contact-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .contact-icon svg {
        width: 16px;
        height: 16px;
    }

    .contato-form {
        padding: 20px;
    }

    .contato-form label {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .contato-form input,
    .contato-form textarea {
        padding: 10px 12px;
        font-size: 13px;
    }

    .contato-form button {
        padding: 10px 12px;
        font-size: 13px;
    }

    /* TÍTULOS GERAL */
    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 24px;
    }

    /* BOTÕES */
    .btn-primary,
    .btn-outline {
        padding: 10px 14px;
        font-size: 13px;
    }
}

/* ========================= */
/* SMARTPHONE (480px) */
/* ========================= */
@media (max-width: 480px) {
    /* PADDING GERAL */
    section {
        padding: 50px 16px;
    }

    /* NAV */
    .nav {
        padding: 12px 15px;
    }

    .logo {
        font-size: 14px;
    }

    .btn-nav {
        padding: 7px 12px;
        font-size: 11px;
    }

    /* HERO */
    .hero {
        padding: 0 12px;
        height: 60vh;
    }

    .hero h1 {
        font-size: 24px;
        line-height: 1.2;
        margin: 10px 0;
    }

    .hero p {
        font-size: 13px;
    }

    .tag {
        font-size: 9px;
        letter-spacing: 1px;
    }

    .hero-buttons {
        margin-top: 12px;
        gap: 8px;
    }

    .hero-buttons button,
    .hero-buttons a {
        padding: 9px 10px;
        font-size: 12px;
        border-radius: 6px;
    }

    .hero-location {
        margin-top: 10px;
        font-size: 11px;
    }

    .hero-location-item {
        gap: 6px;
    }

    .hero-location i {
        width: 14px;
        height: 14px;
    }

    /* SOBRE */
    .sobre {
        padding: 50px 16px;
    }

    .sobre-img img {
        width: 100%;
        max-width: 280px;
    }

    .sobre-text h2 {
        font-size: 20px;
        margin: 10px 0;
    }

    .sobre-text p {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .stats {
        gap: 16px;
    }

    .stat h3 {
        font-size: 18px;
    }

    .stat p {
        font-size: 11px;
        line-height: 1.4;
    }

    /* ABORDAGEM */
    .abordagem {
        padding: 50px 16px;
    }

    .abordagem-top h2 {
        font-size: 20px;
    }

    .abordagem-top p {
        font-size: 13px;
    }

    .abordagem-grid {
        margin-top: 20px;
        gap: 10px;
    }

    .abordagem-card {
        padding: 16px 10px;
    }

    .abordagem-card h3 {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .abordagem-card h3::after {
        width: 20px;
        height: 2px;
        margin-top: 6px;
    }

    .card-highlight {
        font-size: 12px;
        margin-bottom: 4px;
    }

    .card-desc {
        font-size: 12px;
    }

    .icon {
        width: 36px;
        height: 36px;
        margin-bottom: 10px;
    }

    .icon svg {
        width: 16px;
        height: 16px;
    }

    /* SERVIÇOS */
    .servicos-premium {
        padding: 50px 16px;
    }

    .servicos-header h2 {
        font-size: 20px;
    }

    .servicos-header p {
        font-size: 13px;
    }

    #servicos .servicos-grid {
        margin-top: 25px;
        gap: 10px;
    }

    .servico-item {
        padding: 16px 12px;
        border-radius: 14px;
    }

    .servico-item h3 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .servico-item p {
        font-size: 12px;
    }

    /* AJUDA */
    .ajuda {
        padding: 50px 16px;
    }

    .ajuda-top h2 {
        font-size: 20px;
    }

    .ajuda-top p {
        font-size: 13px;
    }

    .ajuda-card {
        padding: 16px 12px;
    }

    .ajuda-card h3 {
        font-size: 14px;
    }

    .ajuda-card p {
        font-size: 12px;
    }

    /* DEPOIMENTOS */
    .depoimentos {
        padding: 50px 16px;
    }

    .depoimentos-header h2 {
        font-size: 20px;
    }

    .depoimentos-header p {
        font-size: 13px;
    }

    .depoimento-card {
        padding: 16px;
        border-radius: 16px;
    }

    .depoimento-card p {
        font-size: 12px;
        line-height: 1.6;
    }

    .stars {
        font-size: 13px;
        letter-spacing: 2px;
    }

    .author {
        font-size: 12px;
        margin-top: 12px;
    }

    /* CONTATO */
    .contato {
        padding: 50px 16px;
    }

    .contato-container {
        gap: 20px;
    }

    .contato-text h2 {
        font-size: 20px;
    }

    .contato-text p {
        font-size: 13px;
    }

    .contact-list {
        gap: 10px;
    }

    .contact-item {
        font-size: 12px;
        gap: 8px;
    }

    .contact-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }

    .contact-icon svg {
        width: 14px;
        height: 14px;
    }

    .contato-form {
        padding: 16px;
    }

    .contato-form label {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .contato-form input,
    .contato-form textarea {
        padding: 8px 10px;
        font-size: 12px;
        margin-top: 4px;
    }

    .contato-form textarea {
        min-height: 100px;
    }

    .contato-form button {
        margin-top: 8px;
        padding: 9px 10px;
        font-size: 12px;
    }

    /* TÍTULOS */
    h1 {
        font-size: 20px;
    }

    h2 {
        font-size: 20px;
    }

    /* MINI */
    .mini {
        font-size: 9px;
    }

    /* BOTÕES */
    .btn-primary,
    .btn-outline {
        padding: 9px 12px;
        font-size: 12px;
        border-radius: 6px;
    }

    /* WHATSAPP FLUTUANTE */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 22px;
        height: 22px;
    }
}

/* ========================= */
/* MOBILE MUITO PEQUENO (375px) */
/* ========================= */
@media (max-width: 375px) {
    /* PADDING GERAL */
    section {
        padding: 40px 12px;
    }

    /* NAV */
    .nav {
        padding: 10px 12px;
    }

    .logo {
        font-size: 13px;
    }

    .btn-nav {
        padding: 6px 10px;
        font-size: 10px;
    }

    /* HERO */
    .hero {
        padding: 0 10px;
        height: 55vh;
    }

    .hero h1 {
        font-size: 20px;
        line-height: 1.25;
        margin: 8px 0;
    }

    .hero p {
        font-size: 12px;
        line-height: 1.4;
    }

    .tag {
        font-size: 8px;
        letter-spacing: 0.5px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 6px;
        margin-top: 10px;
    }

    .hero-buttons button,
    .hero-buttons a {
        padding: 8px 10px;
        font-size: 11px;
    }

    .hero-location {
        font-size: 10px;
        gap: 3px;
    }

    .hero-location-item {
        gap: 4px;
    }

    .hero-location i {
        width: 12px;
        height: 12px;
    }

    /* SOBRE */
    .sobre {
        padding: 40px 12px;
    }

    .sobre-img img {
        width: 100%;
        max-width: 250px;
    }

    .sobre-text h2 {
        font-size: 18px;
    }

    .sobre-text p {
        font-size: 12px;
    }

    .stats {
        flex-direction: column;
        gap: 12px;
    }

    .stat h3 {
        font-size: 16px;
    }

    .stat p {
        font-size: 10px;
    }

    /* ABORDAGEM */
    .abordagem {
        padding: 40px 12px;
    }

    .abordagem-top h2 {
        font-size: 18px;
    }

    .abordagem-top p {
        font-size: 12px;
    }

    .abordagem-grid {
        gap: 8px;
    }

    .abordagem-card {
        padding: 14px 10px;
    }

    .abordagem-card h3 {
        font-size: 13px;
    }

    .card-highlight {
        font-size: 11px;
    }

    .card-desc {
        font-size: 11px;
    }

    /* SERVIÇOS */
    .servicos-premium {
        padding: 40px 12px;
    }

    .servicos-header h2 {
        font-size: 18px;
    }

    .servico-item {
        padding: 14px 10px;
    }

    .servico-item h3 {
        font-size: 13px;
    }

    .servico-item p {
        font-size: 11px;
    }

    /* DEPOIMENTOS */
    .depoimentos {
        padding: 40px 12px;
    }

    .depoimentos-header h2 {
        font-size: 18px;
    }

    .depoimento-card {
        padding: 14px;
    }

    .depoimento-card p {
        font-size: 11px;
    }

    .author {
        font-size: 10px;
    }

    /* CONTATO */
    .contato {
        padding: 40px 12px;
    }

    .contato-text h2 {
        font-size: 18px;
    }

    .contato-text p {
        font-size: 12px;
    }

    .contact-item {
        font-size: 11px;
    }

    .contact-icon {
        width: 30px;
        height: 30px;
    }

    .contact-icon svg {
        width: 13px;
        height: 13px;
    }

    .contato-form {
        padding: 14px;
    }

    .contato-form label {
        font-size: 10px;
    }

    .contato-form input,
    .contato-form textarea {
        padding: 7px 8px;
        font-size: 11px;
    }

    .contato-form button {
        padding: 8px 10px;
        font-size: 11px;
    }

    /* TÍTULOS */
    h1,
    h2 {
        font-size: 18px;
    }

    /* BOTÕES */
    .btn-primary,
    .btn-outline {
        padding: 8px 10px;
        font-size: 11px;
    }

    .whatsapp-float {
        width: 46px;
        height: 46px;
    }

    .whatsapp-float svg {
        width: 20px;
        height: 20px;
    }
}