* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #EAB308;
    --primary-dark: #CA8A04;
    --secondary: #1F2937;
    --dark: #111827;
    --darker: #0F172A;
    --gray: #6B7280;
    --light-gray: #9CA3AF;
    --green: #16A34A;
    --green-dark: #15803D;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to bottom, var(--dark), var(--secondary));
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
#header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(234, 179, 8, 0.1);
}

#header.scrolled {
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.logo-text h1 {
    font-size: 22px;
    background: linear-gradient(135deg, var(--primary), #FCD34D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text p {
    font-size: 11px;
    color: var(--light-gray);
}

#desktop-nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #D1D5DB;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: rgba(17, 24, 39, 0.98);
    padding: 20px;
    gap: 10px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-link {
    color: #D1D5DB;
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s;
}

.mobile-nav-link:hover {
    background: rgba(234, 179, 8, 0.1);
    color: var(--primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.1), transparent);
}

.hero-bg-icons {
    position: absolute;
    inset: 0;
    opacity: 0.05;
}

.bg-icon {
    position: absolute;
    font-size: 150px;
}

.icon-1 { top: 100px; left: 10%; }
.icon-2 { bottom: 200px; right: 15%; }
.icon-3 { top: 50%; left: 33%; }

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(234, 179, 8, 0.15);
    border: 1px solid rgba(234, 179, 8, 0.3);
    border-radius: 50px;
    margin-bottom: 30px;
}

.hero-badge span {
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--primary), #FCD34D, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.4rem);
    color: #D1D5DB;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn {
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #000;
    box-shadow: 0 10px 30px rgba(234, 179, 8, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(234, 179, 8, 0.4);
}

.btn-whatsapp {
    background: var(--green);
    color: #fff;
    box-shadow: 0 10px 30px rgba(22, 163, 74, 0.3);
}

.btn-whatsapp:hover {
    background: var(--green-dark);
    transform: translateY(-3px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--light-gray);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 10px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Sections */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary), #FCD34D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--light-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Produtos */
.produtos-section {
    background: rgba(31, 41, 55, 0.5);
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.produto-card {
    background: linear-gradient(145deg, var(--secondary), var(--dark));
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(107, 114, 128, 0.3);
    transition: all 0.4s;
    position: relative;
}

.produto-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(234, 179, 8, 0.2);
}

.produto-destaque {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: #000;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(234, 179, 8, 0.4);
}

.produto-img {
    height: 220px;
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.15), rgba(202, 138, 4, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    border-bottom: 1px solid rgba(107, 114, 128, 0.2);
}

.produto-card h3 {
    padding: 25px 25px 10px;
    font-size: 1.5rem;
    color: #fff;
    transition: color 0.3s;
}

.produto-card:hover h3 {
    color: var(--primary);
}

.produto-card p {
    padding: 0 25px;
    color: var(--light-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.produto-footer {
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.produto-preco {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.produto-rating span {
    color: var(--primary);
    font-size: 16px;
}

.btn-comprar {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-comprar:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.4);
}

/* Serviços */
.servicos-section {
    background: rgba(15, 23, 42, 0.5);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.servico-card {
    background: linear-gradient(145deg, var(--secondary), var(--dark));
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(107, 114, 128, 0.3);
    transition: all 0.4s;
    text-align: center;
}

.servico-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(234, 179, 8, 0.15);
}

.servico-icon {
    width: 80px;
    height: 80px;
    background: rgba(234, 179, 8, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 25px;
}

.servico-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.servico-card p {
    color: var(--light-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.servico-preco {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn-servico {
    width: 100%;
    background: rgba(234, 179, 8, 0.1);
    color: var(--primary);
    border: 1px solid rgba(234, 179, 8, 0.3);
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-servico:hover {
    background: rgba(234, 179, 8, 0.2);
    border-color: var(--primary);
}

/* Depoimentos */
.depoimentos-section {
    background: rgba(31, 41, 55, 0.5);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.depoimento-card {
    background: linear-gradient(145deg, var(--secondary), var(--dark));
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(107, 114, 128, 0.3);
}

.depoimento-rating {
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 20px;
}

.depoimento-texto {
    color: #D1D5DB;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.7;
}

.depoimento-autor {
    display: flex;
    align-items: center;
    gap: 15px;
}

.autor-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.autor-nome {
    font-weight: 700;
    color: #fff;
}

.autor-label {
    font-size: 0.85rem;
    color: var(--light-gray);
}

/* Sobre */
.sobre-section {
    background: rgba(15, 23, 42, 0.5);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.sobre-circle {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.2), rgba(202, 138, 4, 0.2));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 150px;
    box-shadow: 0 20px 60px rgba(234, 179, 8, 0.2);
}

.sobre-text .section-title {
    text-align: left;
    margin-bottom: 25px;
}

.sobre-paragraph {
    color: #D1D5DB;
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.sobre-beneficios {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.beneficio {
    color: #D1D5DB;
    font-size: 1rem;
}

/* Contato */
.contato-section {
    background: rgba(31, 41, 55, 0.5);
}

.contato-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.contato-card {
    background: linear-gradient(145deg, var(--secondary), var(--dark));
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(107, 114, 128, 0.3);
    text-align: center;
    transition: all 0.3s;
}

.contato-card:hover {
    border-color: var(--primary);
}

.contato-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px;
}

.whatsapp-icon { background: var(--green); }
.instagram-icon { background: #E4405F; }
.location-icon { background: var(--primary); }

.contato-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.contato-card p {
    color: var(--light-gray);
    margin-bottom: 15px;
}

.contato-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.contato-link:hover {
    opacity: 0.8;
}

.horario-card {
    background: linear-gradient(145deg, var(--secondary), var(--dark));
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(107, 114, 128, 0.3);
    max-width: 700px;
    margin: 0 auto;
}

.horario-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.horario-icon {
    font-size: 28px;
}

.horario-header h3 {
    font-size: 1.5rem;
}

.horario-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.horario-item {
    display: flex;
    justify-content: space-between;
    color: #D1D5DB;
    font-size: 1rem;
}

.horario-destaque {
    color: var(--primary);
    font-weight: 700;
}

.horario-fechado {
    color: var(--gray);
}

/* Footer */
.footer {
    background: var(--dark);
    border-top: 1px solid rgba(107, 114, 128, 0.2);
    padding: 50px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.footer-col p {
    color: var(--light-gray);
}

.footer-col h4 {
    margin-bottom: 20px;
    color: #fff;
}

.footer-col a {
    display: block;
    color: var(--light-gray);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(107, 114, 128, 0.2);
    color: var(--light-gray);
}

.footer-bottom p {
    margin-bottom: 8px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: var(--green);
    border-radius: 50%;
    border: none;
    font-size: 32px;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(22, 163, 74, 0.5);
    z-index: 999;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    animation: none;
    background: var(--green-dark);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 8px 30px rgba(22, 163, 74, 0.5); }
    50% { box-shadow: 0 8px 40px rgba(22, 163, 74, 0.8); }
}

/* Responsive */
@media (max-width: 768px) {
    #desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .produtos-grid,
    .servicos-grid,
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }

    .sobre-content {
        grid-template-columns: 1fr;
    }

    .sobre-circle {
        max-width: 300px;
        margin: 0 auto;
        font-size: 100px;
    }

    .sobre-beneficios {
        grid-template-columns: 1fr;
    }

    .contato-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

.hero {
    position: relative;
    height: 100vh; /* ocupa toda a tela */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background-image: url('assets/img/hero-bg.jpg'); /* 🖼️ coloque sua imagem aqui */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    overflow: hidden;
}

/* Camada escura + leve desfoque */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(3px); /* 👈 dá o efeito de desfoque */
    z-index: 0;
}

/* Conteúdo acima do overlay */
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: #e63946;
    color: #fff;
}

.btn-primary:hover {
    background-color: #b91c1c;
}

.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
}

.btn-whatsapp:hover {
    background-color: #1DA851;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
}

.stat-label {
    font-size: 0.9rem;
    color: #ccc;
}

.produto-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #111; /* fallback caso a imagem não carregue */
}

.produto-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* corta a imagem mantendo proporção */
    transition: transform 0.3s ease;
}

.produto-card:hover .produto-img img {
    transform: scale(1.05); /* zoom suave ao passar o mouse */
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon img {
    width: 50px;     /* tamanho da logo */
    height: 50px;    /* mantém proporção */
    object-fit: contain; /* evita distorção */
}

.logo-text h1 {
    font-size: 1.5rem;
    margin: 0;
    color: #fff; /* se o fundo for escuro */
}

.logo-text p {
    font-size: 0.85rem;
    color: #ccc;
    margin: 0;
}

.sobre-circle {
    width: 300px;              /* ajuste conforme o tamanho desejado */
    height: 300px;
    background-color: #3b3525; /* o mesmo tom do quadrado escuro da imagem */
    border-radius: 20px;       /* bordas arredondadas */
    overflow: hidden;          /* corta o excesso da imagem */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.sobre-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;         /* faz a imagem preencher sem distorcer */
    border-radius: 20px;       /* acompanha o formato do quadrado */
}

