/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #0e0e0e;
    color: #fff;
}

/* VAR */
:root {
    --green: #5BC068;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* NAVBAR */
/* NAVBAR */
#header {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    transition: all 0.4s ease;
    z-index: 1000;
}

/* SCROLL */
#header.scrolled {
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.7);
}

/* CONTAINER */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 82px;
}

/* LOGO */
.logo img {
    height: 58px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.06);
}

/* NAV */
.nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 28px;
}

/* LINKS */
.nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    transition: all 0.3s ease;
}

/* ÍCONE */
.nav ul li a i {
    font-size: 14px;
    color: var(--green);
    transition: transform 0.3s ease;
}

/* HOVER */
.nav ul li a:hover {
    color: var(--green);
}

.nav ul li a:hover i {
    transform: translateY(-2px);
}

/* UNDERLINE */
.nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0%;
    height: 2px;
    background: var(--green);
    transition: width 0.35s ease;
}

.nav ul li a:hover::after,
.nav ul li a.active::after {
    width: 100%;
}

/* AGENDA BUTTON */
.btn-agenda {
    background: linear-gradient(135deg, var(--green), #3fa956);
    color: #000;
    padding: 11px 22px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.35s ease;
    box-shadow: 0 0 0 rgba(91,192,104,0);
}

.btn-agenda i {
    font-size: 18px;
}

/* HOVER AGENDA */
.btn-agenda:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 30px rgba(91,192,104,0.8);
}


/* BANNER */
#banner {
    height: 100vh;
    background: url("images/banner/banner-img-1.jpg") center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

/* OVERLAY */
.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

/* CONTEÚDO */
.banner-content {
    position: relative;
    z-index: 2;
    width: 50%;
    margin-left: 8%;
}

/* ============ ESTILOS PARA OS CARDS DE PREÇO ============ */

/* Estado inicial - lista oculta */
.preco-card .preco-list {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    margin: 0;
    padding: 0;
    transform: translateY(-10px);
    pointer-events: none;
}

/* Estado hover/toque - lista visível */
.preco-card.show-list .preco-list {
    max-height: 500px;
    opacity: 1;
    margin-top: 20px;
    transform: translateY(0);
    pointer-events: auto;
}

/* Remove a lista do fluxo normal para evitar movimento */
.preco-card {
    position: relative;
    overflow: hidden;
}

/* Dica visual para hover/toque */
.hover-hint {
    font-size: 12px;
    color: #5BC068;
    margin-top: 15px;
    padding: 8px 12px;
    background: rgba(91, 192, 104, 0.1);
    border-radius: 8px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.preco-card.show-list .hover-hint {
    opacity: 0;
    transform: translateY(-10px);
    max-height: 0;
    padding: 0;
    margin: 0;
}

/* Ajuste de layout para mobile */
@media (max-width: 768px) {
    .hover-hint {
        font-size: 11px;
        padding: 6px 10px;
    }
    
    /* Em mobile, a lista pode ocupar menos espaço */
    .preco-card.show-list .preco-list {
        max-height: 350px;
    }
}

/* Para desktop - hover */
@media (hover: hover) {
    .preco-card:hover .preco-list {
        max-height: 500px;
        opacity: 1;
        margin-top: 20px;
        transform: translateY(0);
        pointer-events: auto;
    }
    
    .preco-card:hover .hover-hint {
        opacity: 0;
        transform: translateY(-10px);
        max-height: 0;
        padding: 0;
        margin: 0;
    }
}

/* Mantenha os estilos existentes para a lista */
.preco-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.preco-card ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px dashed rgba(255,255,255,0.08);
}

.preco-card ul li:last-child {
    border-bottom: none;
}

.preco-card ul li i {
    color: #5BC068;
    margin-right: 8px;
    width: 20px;
    text-align: center;
}

.preco-card ul li span {
    color: #fff;
    font-weight: 600;
    background: rgba(91, 192, 104, 0.15);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
}

.banner-logo {
    width: 130px;
    margin-bottom: 25px;
}

.banner-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 30px;
}

/* BOTÃO SAIBA MAIS */
.btn-saiba-mais {
    display: inline-block;
    padding: 14px 32px;
    background: var(--green);
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 40px;
    transition: 0.3s;
}

.btn-saiba-mais:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(91,192,104,0.5);
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .banner-content {
        width: 85%;
    }

    .nav ul {
        display: none;
    }
}


/* SERVICES - VERSÃO MELHORADA */
.services {
    background: linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
    padding: 120px 8%;
    color: #ffffff;
    overflow: hidden;
    position: relative;
}

/* Efeito de background sutil */
.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #5BC068, transparent);
}

/* TOPO MELHORADO */
.services-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 100px;
    align-items: center;
}

.services-title span {
    color: #5BC068;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 14px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
    position: left;
 
}



.services-title h2 {
    font-size: 52px;
    line-height: 1.2;
    margin-top: 15px;
    font-weight: 800;
    background: linear-gradient(45deg, #fff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #bbb;
    margin-bottom: 25px;
}

/* Botão de ação opcional */
.services-cta {
    margin-top: 30px;
}

.btn-services {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(91, 192, 104, 0.1);
    color: #5BC068;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid rgba(91, 192, 104, 0.3);
    transition: all 0.3s ease;
}

.btn-services:hover {
    background: #5BC068;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(91, 192, 104, 0.3);
}

/* GRID MELHORADO */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    grid-auto-rows: 320px;
}

/* CARD BASE MELHORADO */
.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(30px);
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

/* Efeito de brilho no hover */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.7s ease;
}

.service-card:hover::before {
    left: 100%;
}

/* ÍCONES MELHORADOS */
.service-icon {
    font-size: 48px;
    color: #5BC068;
    margin-bottom: 25px;
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(91, 192, 104, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(91, 192, 104, 0.2);
}

/* TEXTO MELHORADO */
.service-card h3 {
    font-size: 24px;
    margin-bottom: 18px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.service-card p {
    font-size: 15.5px;
    line-height: 1.8;
    color: #ddd;
    position: relative;
    z-index: 2;
    max-width: 300px;
}

/* CARD VERDE (DESTAQUE) MELHORADO */
.service-card.highlight {
    background: linear-gradient(145deg, rgba(38, 51, 37, 0.8), rgba(28, 37, 27, 0.8));
    border: 2px solid rgba(91, 192, 104, 0.3);
    box-shadow: 0 15px 35px rgba(91, 192, 104, 0.1);
}

.service-card.highlight p {
    color: #e6e6e6;
}

/* CARD ESCURO MELHORADO */
.service-card.dark {
    background: rgba(46, 46, 46, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* CARD CLARO MELHORADO */
.service-card.text {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card.text p {
    color: #bbb;
}

/* IMAGEM MELHORADA */
.service-card.image {
    padding: 0;
    overflow: hidden;
    position: relative;
}

.service-card.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-card.image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    z-index: 1;
}

.service-card.image h3,
.service-card.image p {
    position: absolute;
    z-index: 2;
    color: white;
    padding: 0 30px;
}

.service-card.image h3 {
    bottom: 60px;
    left: 0;
    right: 0;
}

.service-card.image p {
    bottom: 25px;
    left: 0;
    right: 0;
    font-size: 14px;
    opacity: 0.9;
}

/* HOVER MELHORADO */
.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(91, 192, 104, 0.3);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(91, 192, 104, 0.2);
    border-color: rgba(91, 192, 104, 0.4);
}

.service-card.image:hover img {
    transform: scale(1.1);
}

/* ANIMAÇÃO MELHORADA */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efeito de entrada em cascata */
@keyframes cardAppear {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.service-card {
    animation: cardAppear 0.6s ease forwards;
}

/* RESPONSIVO MELHORADO */
@media (max-width: 1100px) {
    .services-top {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .services-title h2 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 80px 5%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 20px;
    }
    
    .service-card {
        min-height: 280px;
        padding: 35px 25px;
    }
    
    .services-title h2 {
        font-size: 36px;
    }
    
    .services-text p {
        font-size: 16px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 42px;
    }
}

@media (max-width: 480px) {
    .services-title h2 {
        font-size: 32px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-card h3 {
        font-size: 22px;
    }
    
    .service-card p {
        font-size: 14.5px;
    }
}

/* Animações ao scroll (opcional - precisa de JS) */
.service-card.visible {
    animation-play-state: running;
}

/* Badge para serviços populares (opcional) */
.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #5BC068;
    color: #000;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 3;
}

/* Contador de serviços (opcional) */
.service-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 14px;
    color: #5BC068;
    font-weight: 700;
    opacity: 0.6;
}

/* ================= DIFERENCIAIS - VERSÃO CORRIGIDA ================= */
.diferenciais {
    padding: 140px 8%;
    background: linear-gradient(135deg, #0a0a0a 0%, #0e0e0e 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Efeito de background sutil */
.diferenciais::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(91, 192, 104, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(91, 192, 104, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.diferenciais::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(91, 192, 104, 0.3), 
        rgba(91, 192, 104, 0.6), 
        rgba(91, 192, 104, 0.3), 
        transparent
    );
    z-index: 1;
}

/* ================= HEADER MELHORADO ================= */
.section-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    z-index: 2;
}

/* BADGE PROMOÇÃO */
.badge-promocao {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #5BC068, #3fa653);
    color: #fff;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 6px 18px rgba(91, 192, 104, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ÍCONE DO BADGE */
.badge-promocao i {
    font-size: 14px;
}


.section-header span {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #5BC068;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    padding: 8px 25px;
 
}

.section-header h2 {
    font-size: 58px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin: 0;
    position: relative;
}

/* Efeito de gradiente no título */
.section-header h2 span {
    background: linear-gradient(45deg, #5BC068, #3fa857, #5BC068);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientFlow 3s ease-in-out infinite;
    letter-spacing: normal;
    padding: 0;
    background: none;
    border: none;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.section-header p {
    font-size: 18px;
    color: #aaa;
    max-width: 700px;
    margin: 25px auto 0;
    line-height: 1.7;
}

/* ================= GRID CORRIGIDO (CENTRALIZADO) ================= */
.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 cards por linha */
    gap: 30px;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto; /* Centraliza o grid */
    justify-items: center; /* Centraliza os cards horizontalmente dentro do grid */
}

.diferencial-item {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 45px 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    width: 100%; /* Ocupa toda a largura da célula do grid */
    max-width: 300px; /* Largura máxima para os cards */
}

/* Efeito de brilho no card */
.diferencial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.03), 
        transparent
    );
    transition: left 0.7s ease;
    z-index: 1;
}

/* Borda animada */
.diferencial-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(91, 192, 104, 0.3), 
        transparent
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* ================= ÍCONE MELHORADO ================= */
.icon-box {
    width: 100px;
    height: 100px;
    margin: 0 auto 35px;
    background: linear-gradient(135deg, 
        rgba(91, 192, 104, 0.1) 0%, 
        rgba(91, 192, 104, 0.2) 100%
    );
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
    box-shadow: 
        0 15px 35px rgba(91, 192, 104, 0.15),
        inset 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.icon-box i {
    font-size: 42px;
    color: #5BC068;
    transition: all 0.5s ease;
}

/* Número do diferencial (opcional) */
.diferencial-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 14px;
    font-weight: 700;
    color: rgba(91, 192, 104, 0.5);
    z-index: 2;
}

/* ================= TEXTO MELHORADO ================= */
.diferencial-item h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
    position: relative;
    z-index: 2;
    line-height: 1.3;
}

.diferencial-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #c9c9c9;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
}

/* ================= HOVER EFFECTS ================= */
.diferencial-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(91, 192, 104, 0.4);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(91, 192, 104, 0.2);
}

.diferencial-item:hover::before {
    left: 100%;
}

.diferencial-item:hover::after {
    opacity: 1;
}

.diferencial-item:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, 
        rgba(91, 192, 104, 0.2) 0%, 
        rgba(91, 192, 104, 0.3) 100%
    );
    box-shadow: 
        0 20px 40px rgba(91, 192, 104, 0.25),
        inset 0 0 0 2px rgba(91, 192, 104, 0.3);
}

.diferencial-item:hover .icon-box i {
    color: #ffffff;
    transform: scale(1.1);
}

/* ================= ANIMAÇÕES ================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.diferencial-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

/* Delay nas animações */
.diferencial-item:nth-child(1) { animation-delay: 0.1s; }
.diferencial-item:nth-child(2) { animation-delay: 0.2s; }
.diferencial-item:nth-child(3) { animation-delay: 0.3s; }
.diferencial-item:nth-child(4) { animation-delay: 0.4s; }
.diferencial-item:nth-child(5) { animation-delay: 0.5s; }
.diferencial-item:nth-child(6) { animation-delay: 0.6s; }
.diferencial-item:nth-child(7) { animation-delay: 0.7s; }
.diferencial-item:nth-child(8) { animation-delay: 0.8s; }

/* ================= RESPONSIVO CORRIGIDO ================= */
@media (max-width: 1200px) {
    .diferenciais-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 cards por linha em telas menores */
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .diferenciais {
        padding: 100px 5%;
    }
    
    .section-header h2 {
        font-size: 48px;
    }
    
    .section-header p {
        font-size: 17px;
        padding: 0 20px;
    }
    
    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 cards por linha em tablets */
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .diferenciais-grid {
        grid-template-columns: 1fr; /* 1 card por linha em mobile */
        max-width: 500px;
        margin: 0 auto;
        gap: 20px;
    }
    
    .section-header h2 {
        font-size: 42px;
    }
    
    .section-header span {
        font-size: 13px;
        letter-spacing: 3px;
    }
    
    .icon-box {
        width: 90px;
        height: 90px;
    }
    
    .icon-box i {
        font-size: 38px;
    }
    
    .diferencial-item h3 {
        font-size: 22px;
    }
    
    .diferencial-item p {
        font-size: 15.5px;
    }
    
    .diferencial-item {
        max-width: 400px; /* Aumenta um pouco em mobile */
    }
}

@media (max-width: 480px) {
    .diferenciais {
        padding: 80px 20px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .diferencial-item {
        padding: 35px 25px;
        max-width: 100%; /* Ocupa toda a largura disponível */
    }
    
    .icon-box {
        width: 80px;
        height: 80px;
        margin-bottom: 25px;
    }
    
    .icon-box i {
        font-size: 34px;
    }
}

/* ================= EFEITO DE SCROLL (OPCIONAL) ================= */
.diferencial-item.scroll-visible {
    animation-play-state: running;
}

/* ================= BADGE PARA DIFERENCIAL ESPECIAL ================= */
.diferencial-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #5BC068, #3fa857);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(91, 192, 104, 0.3);
}

/* ================= BOTÃO DE AÇÃO (OPCIONAL) ================= */
.diferencial-cta {
    margin-top: 60px;
    position: relative;
    z-index: 2;
    text-align: center; /* Garante que o botão fique centralizado */
}

.btn-diferenciais {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #5BC068, #3fa857);
    color: #000;
    padding: 16px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(91, 192, 104, 0.3);
}

.btn-diferenciais:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(91, 192, 104, 0.4);
    background: linear-gradient(135deg, #3fa857, #5BC068);
}

.btn-diferenciais i {
    font-size: 18px;
}

/* ================= ALTERNATIVA SE QUISER USAR FLEXBOX ================= */
/*
.diferenciais-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centraliza os cards *
    gap: 30px;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.diferencial-item {
    flex: 0 0 calc(25% - 23px); /* 4 cards com gap de 30px (30*3/4=22.5) *
    max-width: calc(25% - 23px);
}
*/



/* GALERIA */
.galeria {
    padding: 120px 8%;
    background: #111;
    color: #fff;
}

/* HEADER */
.galeria-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.galeria-header span {
    color: #5BC068;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 13px;
}

.galeria-item a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}


.galeria-header h2 {
    font-size: 48px;
    margin: 15px 0;
    font-weight: 800;
}

.galeria-header p {
    font-size: 16px;
    color: #ccc;
    line-height: 1.6;
}

/* ================= GRID MELHORADO ================= */
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* ================= ITEM MELHORADO ================= */
.galeria-item {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    cursor: pointer;
    transform: translateY(40px);
    opacity: 0;
    animation: galeriaFade 0.9s ease forwards;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Efeito de brilho no item */
.galeria-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.05), 
        transparent
    );
    transition: left 0.7s ease;
    z-index: 2;
}

/* Delay nas animações */
.galeria-item:nth-child(1) { animation-delay: 0.1s; }
.galeria-item:nth-child(2) { animation-delay: 0.15s; }
.galeria-item:nth-child(3) { animation-delay: 0.2s; }
.galeria-item:nth-child(4) { animation-delay: 0.25s; }
.galeria-item:nth-child(5) { animation-delay: 0.3s; }
.galeria-item:nth-child(6) { animation-delay: 0.35s; }
.galeria-item:nth-child(7) { animation-delay: 0.4s; }
.galeria-item:nth-child(8) { animation-delay: 0.45s; }

@keyframes galeriaFade {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ================= TAMANHOS DIFERENTES ================= */
.galeria-item.grande {
    grid-column: span 2;
    grid-row: span 2;
}

.galeria-item.largo {
    grid-column: span 2;
}

.galeria-item.vertical {
    grid-row: span 2;
}

/* ================= IMAGEM MELHORADA ================= */
.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9);
    transform: scale(1.05);
}

/* ================= OVERLAY MELHORADO ================= */
.galeria-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.1) 30%,
        rgba(0,0,0,0.8) 100%
    );
    opacity: 0.7;
    transition: opacity 0.5s ease;
    z-index: 1;
}

/* ================= TEXTO MELHORADO ================= */
.overlay {
    position: absolute;
    bottom: 35px;
    left: 35px;
    right: 35px;
    z-index: 3;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.overlay h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.overlay span {
    display: inline-block;
    font-size: 14px;
    color: #5BC068;
    font-weight: 600;
    padding: 5px 15px;
    background: rgba(91, 192, 104, 0.2);
    border-radius: 20px;
    border: 1px solid rgba(91, 192, 104, 0.3);
}

/* Ícone de zoom (opcional) */
.zoom-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
    z-index: 3;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.zoom-icon i {
    font-size: 20px;
    color: #fff;
}

/* ================= HOVER MELHORADO ================= */
.galeria-item:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(91, 192, 104, 0.2);
    border-color: rgba(91, 192, 104, 0.3);
}

.galeria-item:hover::before {
    left: 100%;
}

.galeria-item:hover img {
    transform: scale(1.15);
    filter: brightness(1.1);
}

.galeria-item:hover::after {
    opacity: 0.9;
}

.galeria-item:hover .overlay {
    opacity: 1;
    transform: translateY(0);
}

.galeria-item:hover .zoom-icon {
    opacity: 1;
    transform: scale(1);
}

/* ================= BOTÃO VER MAIS ================= */
.galeria-cta {
    text-align: center;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.btn-galeria {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #5BC068, #3fa857);
    color: #000;
    padding: 16px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(91, 192, 104, 0.2);
}

.btn-galeria:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(91, 192, 104, 0.3);
    background: linear-gradient(135deg, #3fa857, #5BC068);
}

.btn-galeria i {
    font-size: 18px;
}

/* ================= RESPONSIVO MELHORADO ================= */
@media (max-width: 1200px) {
    .galeria-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .galeria-item.largo {
        grid-column: span 2;
    }
    
    .galeria-item.vertical {
        grid-row: span 1;
    }
}

@media (max-width: 992px) {
    .galeria {
        padding: 100px 5%;
    }
    
    .galeria-header h2 {
        font-size: 48px;
    }
    
    .galeria-header p {
        font-size: 17px;
        padding: 0 20px;
    }
    
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }
    
    .galeria-item.grande,
    .galeria-item.largo {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .galeria-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
        gap: 20px;
    }
    
    .galeria-header h2 {
        font-size: 42px;
    }
    
    .galeria-header span {
        font-size: 13px;
        letter-spacing: 2px;
    }
    
    .galeria-item.grande,
    .galeria-item.largo,
    .galeria-item.vertical {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .overlay {
        bottom: 25px;
        left: 25px;
        right: 25px;
    }
    
    .overlay h3 {
        font-size: 22px;
    }
    
    .zoom-icon {
        top: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .galeria {
        padding: 80px 20px;
    }
    
    .galeria-header h2 {
        font-size: 36px;
    }
    
    .galeria-grid {
        grid-auto-rows: 250px;
    }
    
    .overlay {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
    
    .overlay h3 {
        font-size: 20px;
    }
    
    .overlay span {
        font-size: 13px;
    }
    
    .btn-galeria {
        padding: 14px 30px;
        font-size: 15px;
    }
}

/* ================= ANIMAÇÃO AO SCROLL (OPCIONAL) ================= */
.galeria-item.scroll-visible {
    animation-play-state: running;
}

/* ================= MODAL PARA GALERIA (OPCIONAL) ================= */
/*
Para implementar um modal que mostra a imagem em tamanho grande quando clicada
*/


/* AGENDAMENTO */
.agendamento {
    position: relative;
    padding: 90px 8%;
    background: url("images/1.jpg") center/cover no-repeat;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

/* OVERLAY */
.agendamento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.85)
    );
}

/* CONTEÚDO */
.agendamento-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

/* TEXTO */
.agendamento-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 18px;
}

.agendamento-content p {
    font-size: 17px;
    color: #ddd;
    margin-bottom: 35px;
    line-height: 1.6;
}

/* BOTÃO */
.btn-agendar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: #5BC068;
    color: #000;
    font-weight: 700;
    font-size: 16px;
    border-radius: 40px;
    text-decoration: none;
    transition: 0.35s ease;
    box-shadow: 0 15px 35px rgba(91, 192, 104, 0.5);
}

/* HOVER */
.btn-agendar:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 25px 55px rgba(91, 192, 104, 0.7);
}

/* RESPONSIVO */
@media (max-width: 700px) {
    .agendamento-content h2 {
        font-size: 32px;
    }

    .agendamento-content p {
        font-size: 15px;
    }
}

/* PREÇOS */
.precos {
    padding: 90px 20px;
    background: radial-gradient(circle at top, #111, #0b0b0b);
}

.precos-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.precos-header span {
    color: #5BC068;
    font-weight: 800;
    letter-spacing: 3px;
    font-size: 14px;
}

.precos-header h2 {
    font-size: 38px;
    margin: 12px 0;
}

.preco-card {
    cursor: pointer;
    position: relative;
}


.preco-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* deixa o card 100% clicável */
.preco-link .preco-card {
    height: 100%;
    cursor: pointer;
}


.precos-header p {
    color: #aaa;
}

.precos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.preco-card {
    background: linear-gradient(180deg, #171717, #101010);
    border-radius: 22px;
    padding: 35px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.06);
}

.preco-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(91,192,104,0.15), transparent);
    opacity: 0;
    transition: 0.4s;
}

.preco-card:hover::before {
    opacity: 1;
}

.preco-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

.preco-icon {
    width: 62px;
    height: 62px;
    background: rgba(91,192,104,0.15);
    color: #5BC068;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 26px;
    margin-bottom: 20px;
}

.preco-card h3 {
    font-size: 22px;
    margin-bottom: 6px;
}

.preco-card .descricao {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 12px;
}

.preco-valor {
    font-size: 17px;
    color: #5BC068;
    margin-bottom: 18px;
}

.preco-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.preco-card ul li {
    display: flex;
    align-items: flex-start;
    text-align: left;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px dashed rgba(255,255,255,0.08);
}
/* Ajuste para itens descritivos (sem preço) */
.preco-card ul li:not(:has(span:last-child)) {
    flex-direction: column;
}
/* Para itens com preço */
.preco-card ul li:has(span:last-child) {
    justify-content: space-between;
    align-items: center;
}
.preco-card ul li i {
    color: #5BC068;
    margin-right: 10px;
    min-width: 20px;
}

.preco-card ul li span {
    color: #fff;
    font-weight: 600;
}

/* CARD DESTAQUE */
.preco-card.destaque {
    border: 2px solid #5BC068;
    transform: scale(1.03);
}

/* Footer */
.footer {
    background: radial-gradient(circle at top, #111, #0b0b0b);
    padding: 70px 8% 60px;
    color: #fff;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 60px;
    align-items: start;
}

/* BRAND */
.footer-brand img {
    max-width: 160px;
    margin-bottom: 15px;
}

.footer-brand p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
}

/* BOX */
.footer-box h3 {
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-box h3 i {
    color: #5BC068;
}

.footer-box p {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 10px;
}

.footer-box p i {
    color: #5BC068;
    margin-right: 8px;
}

.footer-box .endereco {
    margin-top: 15px;
    line-height: 1.6;
}

/* SOCIAL */
.footer-social {
    margin-top: 20px;
}

.footer-social a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #151515;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: 0.3s ease;
}

.footer-social a:hover {
    background: #5BC068;
    transform: translateY(-4px);
}

/* BARRA FINAL */
.footer-bottom {
    background: #090909;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 15px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
}

.footer-bottom p {
    color: #aaa;
}

.footer-bottom strong {
    color: #5BC068;
}

.footer-bottom .dev {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #aaa;
}

.footer-bottom .dev img {
    width: 75px;
    height: auto;
    opacity: 0.9;
    transition: 0.3s;
}

.footer-bottom .dev img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .footer {
        padding: 60px 20px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand img {
        margin: 0 auto 15px;
    }
}


/* ================= RESPONSIVIDADE GERAL ================= */

/* Para tablets (768px a 1024px) */
@media (max-width: 1024px) {
    .container {
        width: 95%;
    }
    
    /* BANNER */
    .banner-content {
        width: 80%;
        margin-left: 5%;
    }
    
    .banner-logo {
        width: 150px;
    }
    
    .banner-content h1 {
        font-size: 36px;
    }
    
    /* SERVICES */
    .services {
        padding: 80px 5%;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* DIFERENCIAIS */
    .diferenciais {
        padding: 80px 5%;
    }
    
    .diferenciais-grid {
        gap: 30px;
    }
    
    /* GALERIA */
    .galeria {
        padding: 80px 5%;
    }
    
    .galeria-grid {
        gap: 20px;
    }
    
    /* PREÇOS */
    .precos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Para celulares (até 768px) */
@media (max-width: 768px) {
    /* CONTAINER */
    .container {
        width: 92%;
        padding: 0 15px;
    }
    
    /* NAVBAR - Correção crítica */
    .nav-container {
        height: 90px;
        padding: 0 15px;
    }
    
    .logo img {
        height: 48px;
    }
    
    /* Menu hamburguer (adicione este código se não tiver) */
    .menu-toggle {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
        z-index: 1001;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: right 0.4s ease;
        z-index: 1000;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .nav ul li a {
        font-size: 18px;
        justify-content: center;
    }
    
    .btn-agenda {
        margin: 20px auto 0;
        padding: 12px 25px;
    }
    
    .nav-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
    }
    
    /* BANNER */
    #banner {
        height: 90vh;
        min-height: 600px;
    }
    
    .banner-content {
        width: 90%;
        margin: 0 auto;
        text-align: center;
    }
    
    .banner-logo {
        width: 150px;
        margin: 0 auto 25px;
    }
    
    .banner-content h1 {
        font-size: 32px;
    }
    
    .banner-content p {
        font-size: 16px;
    }
    
    .btn-saiba-mais {
        padding: 12px 28px;
        font-size: 15px;
    }
    
    /* SERVICES */
    .services {
        padding: 60px 20px;
    }
    
    .services-top {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .services-title h2 {
        font-size: 36px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        min-height: 250px;
        padding: 30px 20px;
    }
    
    /* DIFERENCIAIS */
    .diferenciais {
        padding: 60px 20px;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .diferencial-item {
        padding: 30px 20px;
    }
    
    .icon-box {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .icon-box i {
        font-size: 32px;
    }
    
    .diferencial-item h3 {
        font-size: 20px;
    }
    
    /* GALERIA */
    .galeria {
        padding: 60px 20px;
    }
    
    .galeria-header {
        margin-bottom: 40px;
    }
    
    .galeria-header h2 {
        font-size: 32px;
    }
    
    .galeria-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
        gap: 15px;
    }
    
    .galeria-item.grande,
    .galeria-item.largo {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .overlay {
        bottom: 15px;
        left: 15px;
    }
    
    .overlay h3 {
        font-size: 18px;
    }
    
    /* AGENDAMENTO */
    .agendamento {
        padding: 60px 20px;
    }
    
    .agendamento-content h2 {
        font-size: 28px;
    }
    
    .agendamento-content p {
        font-size: 15px;
    }
    
    .btn-agendar {
        padding: 14px 30px;
        font-size: 15px;
    }
    
    /* PREÇOS */
    .precos {
        padding: 60px 15px;
    }
    
    .precos-header h2 {
        font-size: 32px;
    }
    
    .precos-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .preco-card {
        padding: 25px 20px;
    }
    
    .preco-card.destaque {
        transform: none;
    }
    
    /* FOOTER */
    .footer {
        padding: 50px 20px 40px;
        text-align: center;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-box {
        text-align: center;
    }
    
    .footer-box h3 {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 20px;
    }
}

/* Para celulares pequenos (até 480px) */
@media (max-width: 480px) {
    /* BANNER */
    .banner-logo {
        width: 150px;
    }
    
    .banner-content h1 {
        font-size: 28px;
    }
    
    .banner-content p {
        font-size: 15px;
    }
    
    /* SERVICES */
    .services-title h2 {
        font-size: 30px;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
    
    /* DIFERENCIAIS */
    .section-header h2 {
        font-size: 28px;
    }
    
    .diferencial-item {
        padding: 25px 15px;
    }
    
    .icon-box {
        width: 70px;
        height: 70px;
    }
    
    .icon-box i {
        font-size: 28px;
    }
    
    /* GALERIA */
    .galeria-grid {
        grid-auto-rows: 180px;
    }
    
    /* PREÇOS */
    .precos-header h2 {
        font-size: 28px;
    }
    
    .preco-card h3 {
        font-size: 20px;
    }
    
    /* UTILITÁRIOS PARA TEXTO */
    .text-center-mobile {
        text-align: center;
    }
    
    .hide-on-mobile {
        display: none !important;
    }
    
    .show-on-mobile {
        display: block !important;
    }
}

/* Para telas muito grandes (acima de 1920px) */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .diferenciais-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Correções específicas para problemas comuns */

/* Evitar overflow horizontal */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Melhorar toques em mobile */
@media (hover: none) and (pointer: coarse) {
    .btn-agenda,
    .btn-saiba-mais,
    .btn-agendar,
    .service-card,
    .diferencial-item,
    .galeria-item,
    .preco-card {
        min-height: 44px; /* Tamanho mínimo para toque */
    }
    
    /* Aumentar área de toque para links */
    .nav ul li a,
    .footer-social a {
        padding: 10px 0;
    }
    
    /* Remover hover effects em mobile */
    .service-card:hover {
        transform: none;
    }
    
    .diferencial-item:hover .icon-box {
        transform: none;
    }
}

/* Melhorar performance em mobile */
@media (max-width: 768px) {
    /* Reduzir animações */
    .service-card,
    .galeria-item {
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    /* Reduzir efeitos blur para performance */
    #header.scrolled {
        backdrop-filter: blur(8px);
    }
}

/* Correção para navegadores que não suportam backdrop-filter */
@supports not (backdrop-filter: blur(10px)) {
    #header.scrolled {
        background: rgba(0, 0, 0, 0.95);
    }
    
    .diferencial-item {
        background: rgba(30, 30, 30, 0.95);
    }
}

/* Impedir zoom em inputs em iOS */
@media (max-width: 768px) {
    input,
    select,
    textarea {
        font-size: 16px; /* Previne zoom automático no iOS */
    }
}

/* Melhorar legibilidade em telas pequenas */
@media (max-width: 768px) {
    body {
        font-size: 15px;
        line-height: 1.5;
    }
    
    h1, h2, h3, h4 {
        line-height: 1.3;
    }
}

/* Layout de grade responsivo melhorado */
.grid-responsive {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 20px;
    width: 100%;
}

/* Container fluido para mobile */
.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}



/* Estilos para o menu toggle */
.menu-toggle {
    display: none; /* Escondido por padrão */
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
    margin-left: 15px;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav {
        display: flex !important; /* Força display flex */
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        padding: 60px 30px;
    }
    
    .nav.active {
        right: 0;
    }
    
.nav-close {
    position: absolute;
    top: 25px;
    right: 240px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 1002;
    padding: 5px;
    /* 🔥 Ajuste de 3px para baixo */
    transform: translateY(100px);
}
}

/* ============ NAVBAR MOBILE CORRIGIDA ============ */

/* Botão Hamburguer - ESTILO BASE */
.menu-toggle {
    display: none; /* Escondido no desktop */
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-left: 15px;
}


/* NAVBAR NO MOBILE */
@media (max-width: 900px) {
    /* CONTAINER DA NAV */
    .nav-container {
        position: relative;
        height: 80px;
        padding: 0 20px;
    }
    
    /* BOTÃO HAMBURGUER VISÍVEL */
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        order: 2; /* Coloca o botão à direita */
    }
    
    /* LOGO NO MOBILE */
    .logo img {
        height: 50px;
        order: 1; /* Coloca o logo à esquerda */
    }
    
    /* MENU PRINCIPAL */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        padding: 100px 30px 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        overflow-y: auto;
    }
    
    /* MENU ABERTO */
    .nav.active {
        right: 0;
    }
    
    /* LISTA DO MENU */
    .nav ul {
        display: flex !important;
        flex-direction: column;
        gap: 0;
        width: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    /* ITENS DO MENU */
    .nav ul li {
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .nav ul li a {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 18px 20px;
        color: #fff;
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        border-radius: 12px;
        transition: all 0.3s ease;
        margin-bottom: 5px;
        border: 1px solid transparent;
    }
    
    .nav ul li a i {
        font-size: 18px;
        color: #5BC068;
        margin-right: 15px;
        width: 24px;
        text-align: center;
    }
    
    /* HOVER E ATIVO */
    .nav ul li a:hover,
    .nav ul li a.active {
        background: rgba(91, 192, 104, 0.15);
        color: #5BC068;
        border-color: rgba(91, 192, 104, 0.3);
        transform: translateX(5px);
    }
    
    .nav ul li a:hover i,
    .nav ul li a.active i {
        color: #5BC068;
        transform: scale(1.1);
    }
    
    /* BOTÃO WHATSAPP NO MENU MOBILE */
    .nav .btn-agenda {
        margin-top: 30px;
        padding: 16px 24px;
        font-size: 16px;
        font-weight: 600;
        background: linear-gradient(135deg, #5BC068, #3fa956);
        color: #000;
        border-radius: 12px;
        text-align: center;
        justify-content: center;
        box-shadow: 0 10px 25px rgba(91, 192, 104, 0.3);
        border: none;
        order: 3; /* Coloca no final */
        width: 100%;
    }
    
    .nav .btn-agenda:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(91, 192, 104, 0.5);
    }
    
    .nav .btn-agenda i {
        font-size: 20px;
        margin-right: 10px;
        color: #000;
    }
    
    /* OVERLAY (FUNDO ESCURO QUANDO MENU ABERTO) */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(3px);
        z-index: 999;
    }
    
    .nav.active + .nav-overlay {
        display: block;
    }
    
    /* BOTÃO DE FECHAR (OPCIONAL) */
    .nav-close {
        position: absolute;
        top: 25px;
        right: 25px;
        background: rgba(255, 255, 255, 0.1);
        border: none;
        color: white;
        font-size: 20px;
        cursor: pointer;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 1002;
    }
    
    .nav-close:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: rotate(90deg);
    }
    
    /* HEADER NO MOBILE */
    #header {
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }
    
    #header.scrolled {
        background: rgba(0, 0, 0, 0.95);
    }
    
    /* AJUSTE NO BODY QUANDO MENU ABERTO */
    body.menu-open {
        overflow: hidden;
    }
}

/* MOBILE PEQUENO (ATÉ 480px) */
@media (max-width: 480px) {
    .nav {
        width: 100%;
        max-width: none;
        padding: 90px 20px 30px;
    }
    
    .nav ul li a {
        padding: 16px 15px;
        font-size: 15px;
    }
    
    .nav .btn-agenda {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .nav-container {
        height: 70px;
        padding: 0 15px;
    }
    
    .logo img {
        height: 45px;
    }
}

/* ============ ANIMAÇÃO SUAVE PARA OS ITENS DO MENU ============ */
@media (max-width: 900px) {
    .nav ul li {
        opacity: 0;
        transform: translateX(20px);
        animation: slideInRight 0.4s ease forwards;
    }
    
    .nav.active ul li:nth-child(1) { animation-delay: 0.1s; }
    .nav.active ul li:nth-child(2) { animation-delay: 0.15s; }
    .nav.active ul li:nth-child(3) { animation-delay: 0.2s; }
    .nav.active ul li:nth-child(4) { animation-delay: 0.25s; }
    .nav.active ul li:nth-child(5) { animation-delay: 0.3s; }
    .nav.active ul li:nth-child(6) { animation-delay: 0.35s; }
    .nav.active ul li:nth-child(7) { animation-delay: 0.4s; }
    
    .nav.active .btn-agenda {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.5s ease 0.5s forwards;
    }
    
    @keyframes slideInRight {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* ============ AJUSTES PARA O BOTÃO HAMBURGUER ============ */
.menu-toggle i {
    transition: transform 0.3s ease;
}

.menu-toggle.active i {
    transform: rotate(90deg);
}