*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html{
    scroll-behavior: smooth;
}

body{
    background: #fff;
    color: #333;
    overflow-x: hidden;
}

.container{
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* TOPBAR INTERATIVA */
.topbar{
    background: #0b8279; /* Verde-turquesa escuro corporativo */
    color: white;
    padding: 10px;
}

.topbar-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 14px;
}

.topbar-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.topbar-links a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* HEADER / BARRA DE NAVEGAÇÃO */
header{
    position: sticky;
    top: 0;
    background: white;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,.08);
    transition: box-shadow 0.3s ease;
}

.nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-link {
    text-decoration: none;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    border-radius: 50%;
}

.logo-texto{
    font-size: 26px;
    font-weight: 800;
    color: #0e9b90; /* Turquesa vibrante */
}

.menu-hamburger {
    display: none;
}

nav a{
    text-decoration: none;
    margin-left: 25px;
    font-weight: 600;
    color: #0e9b90;
    transition: color 0.3s ease;
    white-space: nowrap;
}

nav a:hover{
    color: #ff1493; /* Destaque Rosa do Logo */
}

/* HERO SECTION */
.hero{
    min-height: 85vh;
    background: url('imagemsite.png') center center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 80px 0;
}

.overlay{
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.hero-content{
    position: relative;
    color: white;
    text-align: center;
    max-width: 900px;
    padding: 20px;
    z-index: 2;
}

.hero h1{
    font-size: 50px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 800;
    margin-top: -90px;
    text-shadow: 0 3px 15px #0e9b90, 0 2px 5px #0e9b90;
}

.hero p{
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
    text-shadow: 0 3px 15px #0e9b90, 0 2px 5px #0e9b90;
}

.hero-buttons{
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 260px;
}

.btn-primary,
.btn-secondary{
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s, background 0.3s;
    display: inline-block;
}

.btn-primary{
    background: #ff1493; /* Rosa */
    color: white;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
}

.btn-primary:hover{
    background: #d80e7b;
    transform: translateY(-2px);
}

.btn-secondary{
    background: rgb(37, 211, 102); /* Amarelo Ouro */
    color: white;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
}

.btn-secondary:hover{
    background: #0e9b90;
    transform: translateY(-2px);
}

/* STATUS / ESTATÍSTICAS */
.stats{
    padding: 60px 0;
    background: #f4faf9;
    border-bottom: 1px solid #eef7f6;
}

.stats-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat span{
    font-size: 48px;
    font-weight: 800;
    color: #ff1493;
    display: block;
    margin-bottom: 5px;
}

.stat p {
    font-weight: 600;
    color: #555;
}

/* CONFIGURAÇÕES GERAIS DE SEÇÃO */
section{
    padding: 80px 0;
}

h2{
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #0e9b90;
    font-weight: 700;
}

.sobre p{
    text-align: center;
    max-width: 850px;
    margin: 20px auto;
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

/* --- ESTILIZAÇÃO DO CARROSSEL DINÂMICO --- */
.ofertas {
    background: #ffffff;
    overflow: hidden;
    padding: 60px 0;
}

.ofertas-subtitulo {
    text-align: center;
    color: #666;
    margin-top: -30px;
    margin-bottom: 40px;
    font-size: 16px;
}

.carrossel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.carrossel-track {
    display: flex;
    width: max-content;
    gap: 25px;

    /* ADICIONE ESTAS DUAS LINHAS: */
    touch-action: pan-y; /* Permite rolar a tela para baixo, mas domina o scroll lateral */
    user-select: none; /* Impede que os itens fiquem azuis/selecionados ao arrastar */
}

.carrossel-item {
    width: 280px;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    border: 3px solid #f0f8f7;
    background: #fff;
}

.carrossel-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    /* ADICIONE ESTA LINHA: */
    pointer-events: none; /* Impede que o navegador entenda o clique como "arrastar imagem" nativo */
}

.carrossel-item:hover {
    transform: scale(1.06);
    box-shadow: 0 12px 25px rgba(14, 155, 144, 0.2);
    border-color: #0e9b90;
}

/* CARDS DE SERVIÇOS */
.servicos {
    background: #f4faf9;
}

.cards{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card{
    background: white;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,.03);
    transition: .3s;
    border: 1px solid #eef7f6;
}

.card:hover{
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(14, 155, 144, 0.12);
    border-color: #0e9b90;
}

.card h3{
    margin-bottom: 15px;
    color: #0e9b90;
    font-size: 22px;
}

.card p{
    color: #666;
    line-height: 1.6;
}

/* SEÇÃO DE PRODUTOS */
.produtos{
    background: #0e9b90;
    color: white;
}

.produtos h2{
    color: white;
}

.produtos-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    font-size: 18px;
    max-width: 1000px;
    margin: 0 auto;
}

.produtos-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 18px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* DEPOIMENTOS */
.depoimentos{
    background: #fdfdfd;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.depoimento-box {
    background: #f4faf9;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,.01);
    text-align: center;
    font-size: 16px;
    font-style: italic;
    color: #444;
    line-height: 1.6;
    border: 1px solid #eef7f6;
}

.depoimento-box strong {
    display: block;
    margin-top: 15px;
    font-style: normal;
    color: #0e9b90;
    font-size: 15px;
}

/* REDES SOCIAIS */
.redes-sociais {
    background: #fff;
    text-align: center;
    border-top: 1px solid #eef7f6;
}

.redes-subtitulo {
    font-size: 18px;
    color: #666;
    margin-bottom: 35px;
}

.redes-buttons {
    display: flex;
    justify-content: center;
}

.btn-instagram {
    padding: 16px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    color: white;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 5px 15px rgba(220, 39, 67, 0.3);
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 39, 67, 0.5);
}

/* CONTATO */
.contato{
    text-align: center;
    background: #f4faf9;
}

.contato p {
    font-size: 18px;
    margin-bottom: 15px;
}

.link-contato {
    color: #0e9b90;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 600;
}

.link-contato:hover {
    color: #ff1493;
    text-decoration: underline;
}

/* FOOTER */
footer{
    background: #112220;
    color: white;
    padding: 30px;
    text-align: center;
    font-size: 14px;
}

/* BOTÃO FLUTUANTE DO WHATSAPP */
.whatsapp{
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    animation: pulse 2s infinite;
}

@keyframes pulse{
    0%{transform: scale(1); box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);}
    50%{transform: scale(1.06); box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);}
    100%{transform: scale(1); box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);}
}

/* --- MEDIA QUERIES (RESPONSIVIDADE CELULAR) --- */
@media(max-width: 992px) {
    .hero h1{ font-size: 42px; }
    .carrossel-item { width: 230px; }
}

@media(max-width: 768px){
    section { padding: 60px 0; }
    h2 { font-size: 30px; margin-bottom: 30px; }
    .hero{ min-height: auto; padding: 100px 0; }
    .hero h1{ font-size: 34px; }
    .hero p{ font-size: 18px; }

    .menu-hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }

    .menu-hamburger .bar {
        width: 100%;
        height: 3px;
        background-color: #0e9b90;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .menu-hamburger.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .menu-hamburger.active .bar:nth-child(2) { opacity: 0; }
    .menu-hamburger.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

    nav.nav-menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 10px 15px rgba(0,0,0,.05);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.3s ease;
    }

    nav.nav-menu.active {
        max-height: 420px;
        padding: 15px 0;
        border-top: 1px solid #f0f0f0;
    }

    nav.nav-menu a {
        margin-left: 0;
        font-size: 16px;
        padding: 12px 25px;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #f9f9f9;
    }

    nav.nav-menu a:last-child { border-bottom: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
}

@media(max-width: 480px){
    .hero h1{ font-size: 28px; }
    .stats-grid { grid-template-columns: 1fr; }
    .btn-primary, .btn-secondary, .btn-instagram { width: 100%; text-align: center; }
    .logo-texto { font-size: 22px; }
    .carrossel-item { width: 190px; }
}