/* ===== RESET & BASE ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #f5f5f5;
    --fg: #2b2b2b;
    --card: #ffffff;
    --card-fg: #2b2b2b;
    --primary: hsl(150, 60%, 25%);
    --primary-light: hsl(150, 60%, 92%);
    --secondary: #2b2b2b;
    --secondary-fg: #fafafa;
    --muted: #ebebeb;
    --muted-fg: #666666;
    --border: #e0e0e0;
    --whatsapp: hsl(145, 70%, 42%);
    --whatsapp-hover: hsl(145, 70%, 36%);
    --whatsapp-fg: #ffffff;
    --star: hsl(45, 100%, 50%);
    --radius: 0.75rem;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg);
    color: var(--fg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ===== HEADER ===== */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(43, 43, 43, 0.95);
    backdrop-filter: blur(8px);
    transition: box-shadow 0.3s;
}

#main-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

#main-header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}

.nav-links {
    display: flex;
    gap: 0.25rem;
}

.nav-links button {
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.4rem 0.7rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.nav-links button:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.btn-nav-cta {
    background: var(--whatsapp) !important;
    color: var(--whatsapp-fg) !important;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.5rem 1.2rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.btn-nav-cta:hover {
    background: var(--whatsapp-hover) !important;
}

/* Mobile bottom bar */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(43, 43, 43, 0.97);
    backdrop-filter: blur(8px);
    padding: 0.5rem;
    gap: 0.25rem;
    align-items: center;
    justify-content: center;
}

.mobile-bottom-bar button {
    color: rgba(255,255,255,0.8);
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.4rem 0.5rem;
    border-radius: 0.4rem;
}

.btn-mobile-cta {
    background: var(--whatsapp) !important;
    color: var(--whatsapp-fg) !important;
    font-weight: 700 !important;
    padding: 0.5rem 1rem !important;
    border-radius: 0.5rem;
}

/* ===== HERO ===== */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('assets/hero-bg-C6Xn1E1V.webp') center/cover no-repeat;
    padding: 5rem 1rem 3rem;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.82);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 700px;
}

.hero-logo {
    width: 140px;
    height: auto;
    margin: 0 auto 1.5rem;
}

#hero h1 {
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1rem;
}

#hero h1 .highlight {
    color: var(--whatsapp);
    font-style: italic;
}

.hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 1.5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* Trust badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 2rem;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.85);
}

.badge svg {
    color: var(--whatsapp);
    flex-shrink: 0;
}

/* Hero buttons */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.btn-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.2s;
    border: 2px dashed rgba(255,255,255,0.3);
}

.btn-primary-large:hover {
    transform: scale(1.05);
}

.btn-whatsapp-large {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--whatsapp);
    color: var(--whatsapp-fg);
    font-weight: 800;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.2s;
    border: 2px dashed rgba(255,255,255,0.3);
}

.btn-whatsapp-large:hover {
    transform: scale(1.05);
    background: var(--whatsapp-hover);
}

/* CEP */
.cep-section {
    margin-bottom: 1.5rem;
}

.cep-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.5rem;
}

.cep-label svg {
    color: var(--whatsapp);
}

.cep-input-group {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    max-width: 360px;
    margin: 0 auto;
}

.cep-input-group input {
    flex: 1;
    padding: 0.7rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.95);
    color: #333;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
}

.cep-input-group input:focus {
    border-color: var(--whatsapp);
    box-shadow: 0 0 0 2px rgba(34,197,94,0.2);
}

.btn-cep {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.1) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    color: rgba(255,255,255,0.8) !important;
    padding: 0.7rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-cep:hover {
    background: rgba(255,255,255,0.15) !important;
}

.cep-result {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    min-height: 1.2em;
}

.cep-result.success { color: var(--whatsapp); }
.cep-result.error { color: #ef4444; }

/* CEP Result Card */
.cep-result-card {
    margin-top: 1rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(34,197,94,0.3);
    border-radius: 0.75rem;
    padding: 1.25rem;
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.cep-result-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.cep-result-header svg {
    color: var(--whatsapp);
}

.cep-result-title {
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--whatsapp);
}

.cep-address {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.5rem;
    text-align: center;
}

.cep-delivery {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.cep-delivery svg {
    color: var(--whatsapp);
}

.btn-cep-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    background: var(--whatsapp) !important;
    color: var(--whatsapp-fg) !important;
    font-weight: 800;
    font-size: 0.9rem;
    padding: 0.85rem 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(34,197,94,0.3);
}

.btn-cep-whatsapp:hover {
    background: var(--whatsapp-hover) !important;
    transform: scale(1.02);
}

.btn-cep-whatsapp img {
    width: 20px;
    height: 20px;
}

/* Social proof mini */
.social-proof-mini {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

.social-proof-mini .divider {
    color: rgba(255,255,255,0.2);
}

.social-proof-mini strong {
    color: rgba(255,255,255,0.9);
}

/* ===== SECTIONS ===== */
.section-light {
    background: var(--card);
    padding: 4rem 0;
}

.section-gray {
    background: #f9fafb;
    padding: 4rem 0;
}

.section-white {
    background: #fff;
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--card-fg);
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--muted-fg);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== CAÇAMBAS GRID ===== */
.cacambas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.cacamba-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
}

.cacamba-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.cacamba-header {
    padding: 1.25rem 1.25rem 0;
}

.cacamba-header h3 {
    margin-bottom: 0.25rem;
}

.cacamba-header .size {
    font-size: 1.5rem;
    font-weight: 900;
}

.cacamba-header .subtitle {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--muted-fg);
}

.price {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    font-style: italic;
    margin: 0.25rem 0;
}

.bags {
    font-size: 0.75rem;
    color: var(--muted-fg);
}

.cacamba-body {
    padding: 1rem 1.25rem;
    flex: 1;
}

.indicado {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--muted-fg);
    margin-bottom: 0.25rem;
}

.cacamba-body > p {
    font-size: 0.85rem;
    color: var(--fg);
    margin-bottom: 0.1rem;
}

.features {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.features li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--muted-fg);
}

.features li svg {
    color: var(--whatsapp);
    flex-shrink: 0;
}

.btn-cotacao {
    margin: 1rem 1.25rem 1.25rem;
    background: var(--secondary) !important;
    color: var(--secondary-fg) !important;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 0.85rem;
    border-radius: 0.75rem;
    transition: all 0.2s;
    text-align: center;
}

.btn-cotacao:hover {
    background: #1a1a1a !important;
    transform: scale(1.02);
}

.whatsapp-cta-center {
    text-align: center;
    margin-top: 1rem;
}

.btn-whatsapp-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--whatsapp);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.btn-whatsapp-inline:hover {
    text-decoration: underline;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.testimonial-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s;
}

.testimonial-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.stars {
    color: var(--star);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
}

.quote {
    font-style: italic;
    color: #374151;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.author {
    font-size: 0.9rem;
    color: #111;
}

.city {
    font-size: 0.8rem;
    color: #6b7280;
}

/* ===== COMO FUNCIONA ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.step-card {
    text-align: center;
}

.step-number {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.9rem;
    color: #6b7280;
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item summary {
    padding: 1rem 0;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    transition: color 0.2s;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    border-right: 2px solid var(--muted-fg);
    border-bottom: 2px solid var(--muted-fg);
    transform: rotate(45deg);
    transition: transform 0.2s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item[open] summary::after {
    transform: rotate(-135deg);
}

.faq-item summary:hover {
    text-decoration: underline;
}

.faq-item p {
    padding: 0 0 1rem;
    font-size: 0.9rem;
    color: var(--muted-fg);
    line-height: 1.7;
}

/* ===== SOBRE / STATS ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    text-align: center;
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.stat-card h3 {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-card p {
    color: #6b7280;
    font-size: 0.9rem;
}

/* ===== FOOTER ===== */
footer {
    background: var(--secondary);
    color: var(--secondary-fg);
    padding: 3rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
}

.footer-info {
    max-width: 400px;
}

.footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: 0.75rem;
}

.footer-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1rem;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
    text-align: left;
}

.footer-link:hover:not(.no-hover) {
    color: var(--primary);
}

.footer-link.no-hover {
    cursor: default;
}

.footer-link svg {
    flex-shrink: 0;
}

.btn-footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--whatsapp) !important;
    color: var(--whatsapp-fg) !important;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
    align-self: center;
}

.btn-footer-cta:hover {
    background: var(--whatsapp-hover) !important;
}

.footer-bottom {
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.ssl-logo {
    height: 40px;
    width: auto;
    margin: 0 auto 1rem;
}

.copyright {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}

.cnpj {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.35);
    margin-top: 0.25rem;
    user-select: none;
    -webkit-user-select: none;
}

/* ===== FLOATING WHATSAPP ===== */
.floating-whatsapp {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 99;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--whatsapp) !important;
    color: var(--whatsapp-fg) !important;
    padding: 0.85rem 1.25rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    transition: all 0.2s;
    animation: pulse-green 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.05);
    background: var(--whatsapp-hover) !important;
}

.floating-whatsapp img {
    width: 28px;
    height: 28px;
}

@keyframes pulse-green {
    0%, 100% { box-shadow: 0 4px 20px rgba(34,197,94,0.3); }
    50% { box-shadow: 0 4px 30px rgba(34,197,94,0.6); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    #main-header nav {
        padding: 0 0.5rem;
    }

    .nav-links {
        display: none;
    }

    .btn-nav-cta {
        margin-left: auto;
    }

    .mobile-bottom-bar {
        display: flex;
    }

    #hero {
        padding-bottom: 5rem;
    }

    #hero h1 {
        font-size: 1.75rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary-large,
    .btn-whatsapp-large {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .trust-badges {
        gap: 0.4rem;
    }

    .badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.75rem;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .cacambas-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .footer-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-contacts {
        align-items: center;
    }

    .floating-whatsapp {
        bottom: 5rem;
    }

    .social-proof-mini {
        font-size: 0.7rem;
    }
}

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

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== DISABLE RIGHT CLICK & DEV TOOLS ===== */
body {
    -webkit-user-select: auto;
}
