/* =========================================
   CONFIGURAÇÕES
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #111827;
    background: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    width: 100%;
    display: block;
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: auto;
}


/* =========================================
   TOPO
========================================= */

.topo {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.topo-content {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* LOGO */

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo span {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #111827;
}

.logo strong {
    font-size: 12px;
    color: #e11d48;
    letter-spacing: 2px;
    margin-top: 5px;
}


/* MENU */

.topo nav {
    display: flex;
    gap: 30px;
}

.topo nav a {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    transition: 0.3s;
}

.topo nav a:hover {
    color: #e11d48;
}


/* BOTÃO TOPO */

.botao-topo {
    background: #16a34a;
    color: white;
    padding: 13px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.botao-topo:hover {
    transform: translateY(-2px);
    background: #15803d;
}


/* =========================================
   HERO
========================================= */

.hero {
    background:
        linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: white;
    padding: 80px 0;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}


/* TEXTO */

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: #fca5a5;
    margin-bottom: 22px;
}

.hero h1 {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.04;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.hero h1 span {
    display: block;
    color: #fb7185;
}

.hero p {
    max-width: 560px;
    font-size: 17px;
    color: #d1d5db;
    margin-bottom: 32px;
}


/* BOTÕES */

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-principal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: #16a34a;
    color: white;
    padding: 15px 24px;
    border-radius: 8px;
    font-weight: 800;
    transition: 0.3s;
}

.btn-principal:hover {
    transform: translateY(-3px);
    background: #15803d;
}

.btn-secundario {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #4b5563;
    color: white;
    padding: 15px 24px;
    border-radius: 8px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-secundario:hover {
    background: white;
    color: #111827;
}


/* INFORMAÇÕES */

.hero-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-info div {
    font-size: 12px;
    color: #d1d5db;
}

.hero-info i {
    color: #4ade80;
    margin-right: 5px;
}


/* IMAGEM HERO */

.hero-image {
    position: relative;
}

.image-box {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #374151;
    box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}

.image-box img {
    height: 500px;
    object-fit: cover;
}

.image-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(17,24,39,0.92);
    backdrop-filter: blur(10px);
    padding: 15px 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.image-label > i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e11d48;
    border-radius: 8px;
}

.image-label strong {
    display: block;
    font-size: 13px;
}

.image-label small {
    color: #d1d5db;
}


/* =========================================
   BENEFÍCIOS
========================================= */

.beneficios {
    background: #ffffff;
    padding: 35px 0;
    border-bottom: 1px solid #eeeeee;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.beneficio {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icone {
    min-width: 48px;
    width: 48px;
    height: 48px;
    background: #fff1f2;
    color: #e11d48;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 20px;
}

.beneficio h3 {
    font-size: 15px;
    margin-bottom: 2px;
}

.beneficio p {
    color: #6b7280;
    font-size: 12px;
}


/* =========================================
   ESTOQUE
========================================= */

.estoque {
    background: #f8fafc;
    padding: 90px 0;
}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-title > span {
    font-size: 12px;
    font-weight: 800;
    color: #e11d48;
    letter-spacing: 2px;
}

.section-title h2 {
    font-size: 40px;
    line-height: 1.15;
    margin: 10px 0 15px;
}

.section-title p {
    color: #6b7280;
}


/* PRODUTOS */

.produtos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.produto {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: 0.3s;
}

.produto:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.10);
}

.produto-img {
    height: 250px;
    position: relative;
    background: #e5e7eb;
    overflow: hidden;
}

.produto-img img {
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.produto:hover .produto-img img {
    transform: scale(1.05);
}

.produto-img span {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #16a34a;
    color: white;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 10px;
    border-radius: 5px;
}

.produto-info {
    padding: 22px;
}

.produto-info small {
    color: #e11d48;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.produto-info h3 {
    font-size: 20px;
    margin: 5px 0 8px;
}

.produto-info p {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 18px;
}

.produto-info a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #15803d;
    font-size: 13px;
    font-weight: 800;
}


/* CTA ESTOQUE */

.estoque-completo {
    margin-top: 55px;
    background: #111827;
    color: white;
    border-radius: 14px;
    padding: 35px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.estoque-completo span {
    color: #fb7185;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.estoque-completo h2 {
    font-size: 27px;
    margin: 5px 0;
}

.estoque-completo p {
    color: #d1d5db;
    font-size: 14px;
}

.estoque-completo > a {
    background: #16a34a;
    padding: 16px 22px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 13px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}


/* =========================================
   SOBRE
========================================= */

.sobre {
    padding: 90px 0;
    background: white;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.sobre-imagem {
    border-radius: 15px;
    overflow: hidden;
}

.sobre-imagem img {
    height: 480px;
    object-fit: cover;
}

.sobre-texto > span {
    font-size: 12px;
    color: #e11d48;
    font-weight: 800;
    letter-spacing: 2px;
}

.sobre-texto h2 {
    font-size: 42px;
    line-height: 1.1;
    margin: 12px 0 20px;
}

.sobre-texto p {
    color: #6b7280;
    margin-bottom: 15px;
}

.check-list {
    margin: 25px 0;
}

.check-list div {
    margin-bottom: 12px;
    font-weight: 600;
}

.check-list i {
    color: #16a34a;
    margin-right: 8px;
}


/* =========================================
   CTA
========================================= */

.cta {
    background: #e11d48;
    color: white;
    padding: 65px 0;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fecdd3;
}

.cta h2 {
    font-size: 38px;
    line-height: 1.1;
    margin: 8px 0 12px;
}

.cta p {
    max-width: 650px;
    color: #ffe4e6;
}

.cta-content > a {
    background: white;
    color: #15803d;
    padding: 17px 23px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}


/* =========================================
   RODAPÉ
========================================= */

footer {
    background: #111827;
    color: white;
    padding-top: 55px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 45px;
}

.footer-logo p {
    max-width: 350px;
    color: #9ca3af;
    margin-top: 15px;
    font-size: 14px;
}

footer h3 {
    font-size: 14px;
    margin-bottom: 15px;
}

footer a {
    display: block;
    color: #9ca3af;
    font-size: 13px;
    margin-bottom: 8px;
}

footer a:hover {
    color: white;
}

footer p {
    color: #9ca3af;
    font-size: 13px;
}

.copyright {
    text-align: center;
    border-top: 1px solid #1f2937;
    padding: 20px;
    color: #6b7280;
    font-size: 11px;
}


/* =========================================
   WHATSAPP FLUTUANTE
========================================= */

.whatsapp-flutuante {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #16a34a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 31px;
    z-index: 9999;
    box-shadow: 0 8px 30px rgba(0,0,0,0.30);
    animation: pulse 1.8s infinite;
}

.whatsapp-flutuante:hover {
    transform: scale(1.1);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: #111827;
    color: white;
    font-size: 12px;
    padding: 8px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

.whatsapp-flutuante:hover .whatsapp-tooltip {
    opacity: 1;
}


@keyframes pulse {

    0% {
        box-shadow: 0 0 0 0 rgba(22,163,74,0.6);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(22,163,74,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(22,163,74,0);
    }

}


/* =========================================
   RESPONSIVO
========================================= */

@media (max-width: 900px) {

    .topo nav {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-image {
        max-width: 650px;
        margin: auto;
    }

    .beneficios-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .produtos {
        grid-template-columns: repeat(2, 1fr);
    }

    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sobre-imagem {
        max-width: 650px;
    }

    .cta-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 600px) {

    .container {
        width: 90%;
    }

    .topo-content {
        min-height: 68px;
    }

    .botao-topo {
        padding: 10px 12px;
        font-size: 11px;
    }

    .botao-topo i {
        font-size: 15px;
    }

    .hero {
        padding: 50px 0;
    }

    .hero h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-principal,
    .btn-secundario {
        width: 100%;
    }

    .hero-info {
        flex-direction: column;
        gap: 8px;
    }

    .image-box img {
        height: 330px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .estoque {
        padding: 65px 0;
    }

    .produtos {
        grid-template-columns: 1fr;
    }

    .produto-img {
        height: 270px;
    }

    .estoque-completo {
        padding: 28px 22px;
        flex-direction: column;
        align-items: flex-start;
    }

    .estoque-completo h2 {
        font-size: 23px;
    }

    .estoque-completo > a {
        width: 100%;
        justify-content: center;
    }

    .sobre {
        padding: 65px 0;
    }

    .sobre-imagem img {
        height: 350px;
    }

    .sobre-texto h2 {
        font-size: 34px;
    }

    .cta {
        padding: 55px 0;
    }

    .cta h2 {
        font-size: 32px;
    }

    .cta-content > a {
        width: 100%;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .whatsapp-flutuante {
        right: 18px;
        bottom: 18px;
        width: 60px;
        height: 60px;
    }

    .whatsapp-tooltip {
        display: none;
    }

}