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

:root {
    --verde: #168A2F;
    --verde-claro: #58C63A;
    --amarelo: #FFD21F;
    --vermelho: #ED1C24;
    --creme: #FFF8E6;
    --marrom: #5A3516;
    --branco: #FFFFFF;
    --texto: #2B2B2B;
    --sombra: rgba(0, 0, 0, 0.10);
}

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

body {
    font-family: 'Inter', Arial, sans-serif;
    background: var(--creme);
    color: var(--texto);
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

/* HEADER */
.site-header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--branco);
    box-shadow: 0 8px 24px var(--sombra);
}

/* BARRA SUPERIOR */
.top-bar {
    background: linear-gradient(90deg, var(--verde), var(--verde-claro));
    color: var(--branco);
    font-size: 13px;
    font-weight: 600;
}

.top-bar-content {
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-bar a {
    color: var(--branco);
    font-weight: 700;
}

/* NAVBAR */
.navbar {
    background: var(--branco);
}

.nav-content {
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.logo-area {
    display: flex;
    align-items: center;
}

.logo-area img {
    width: 150px;
    max-height: 78px;
    object-fit: contain;
}

/* MENU */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-menu a {
    color: var(--verde);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    position: relative;
    transition: 0.3s ease;
}

.nav-menu a::after {
    content: "";
    width: 0;
    height: 3px;
    background: var(--vermelho);
    position: absolute;
    left: 0;
    bottom: -8px;
    border-radius: 20px;
    transition: 0.3s ease;
}

.nav-menu a:hover {
    color: var(--vermelho);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* BOTÃO */
.btn-header {
    background: linear-gradient(135deg, var(--vermelho), #ff4b35);
    color: var(--branco);
    padding: 13px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(237, 28, 36, 0.25);
    transition: 0.3s ease;
    white-space: nowrap;
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(237, 28, 36, 0.35);
}

/* MENU MOBILE */
.menu-toggle {
    display: none;
    border: none;
    background: var(--verde);
    color: var(--branco);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 24px;
    cursor: pointer;
}

/* RESPONSIVO */
@media (max-width: 980px) {
    .top-bar-content {
        justify-content: center;
        text-align: center;
    }

    .top-bar-content a {
        display: none;
    }

    .nav-content {
        height: 82px;
    }

    .logo-area img {
        width: 125px;
    }

    .nav-menu,
    .btn-header {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

.nav-highlight {
    background: linear-gradient(135deg, var(--verde), var(--verde-claro));
    color: var(--branco) !important;
    padding: 11px 18px;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(22, 138, 47, 0.22);
}

.nav-highlight:hover {
    transform: translateY(-2px);
}

.nav-highlight::after {
    display: none;
}

.nav-highlight-alt {
    background: linear-gradient(135deg, var(--vermelho), #ff4b35);
    color: var(--branco) !important;
    padding: 11px 18px;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(237, 28, 36, 0.22);
}

.nav-highlight-alt:hover {
    transform: translateY(-2px);
}

.nav-highlight-alt::after {
    display: none;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, var(--creme), #fff2cc);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 40px;
}

/* TEXTO */
.hero-text .tag {
    background: var(--amarelo);
    color: var(--marrom);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 15px;
}

.hero-text h1 {
    font-size: 46px;
    line-height: 1.1;
    color: var(--verde);
    margin-bottom: 18px;
    font-weight: 800;
}

.hero-text h1 span {
    color: var(--vermelho);
}

.hero-text p {
    font-size: 16px;
    max-width: 420px;
    margin-bottom: 25px;
    opacity: 0.85;
}

/* BOTÕES */
.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--vermelho), #ff4b35);
    color: var(--branco);
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--verde);
    color: var(--verde);
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
    transition: 0.3s;
}

.btn-outline:hover {
    background: var(--verde);
    color: var(--branco);
}

/* IMAGEM */
.hero-image {
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 480px;
    transform: rotate(-3deg);
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p {
        margin: 0 auto 25px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image img {
        max-width: 320px;
        margin-top: 20px;
    }
}

/* ABOUT */
.about-section {
    background: var(--branco);
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 55px;
}

.about-image {
    background: linear-gradient(135deg, var(--amarelo), #fff1a8);
    border-radius: 32px;
    padding: 25px;
    box-shadow: 0 18px 35px var(--sombra);
}

.about-image img {
    width: 100%;
    display: block;
    border-radius: 24px;
    object-fit: cover;
}

.section-tag {
    display: inline-block;
    background: rgba(22, 138, 47, 0.12);
    color: var(--verde);
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.about-text h2 {
    color: var(--marrom);
    font-size: 36px;
    line-height: 1.15;
    margin-bottom: 18px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--texto);
    opacity: 0.86;
    margin-bottom: 14px;
}

.about-highlights {
    display: flex;
    gap: 18px;
    margin: 26px 0;
}

.about-highlights div {
    background: var(--creme);
    border: 1px solid rgba(90, 53, 22, 0.12);
    border-radius: 20px;
    padding: 18px 22px;
    min-width: 150px;
}

.about-highlights strong {
    display: block;
    color: var(--vermelho);
    font-size: 28px;
    font-weight: 800;
}

.about-highlights span {
    color: var(--marrom);
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 900px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-text {
        text-align: center;
    }

    .about-highlights {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* FEATURES */
.features-section {
    background: linear-gradient(180deg, var(--creme), #fff1c7);
    padding: 80px 0;
}

.section-heading {
    max-width: 650px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading h2 {
    color: var(--verde);
    font-size: 36px;
    line-height: 1.15;
    margin-bottom: 14px;
}

.section-heading p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.82;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.feature-card {
    background: var(--branco);
    border-radius: 26px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 14px 28px var(--sombra);
    border: 1px solid rgba(22, 138, 47, 0.10);
    transition: 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.13);
}

.feature-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--amarelo), #fff0a0);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.feature-card h3 {
    color: var(--marrom);
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.82;
}

@media (max-width: 1000px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .section-heading h2 {
        font-size: 30px;
    }
}

/* PRODUCTS */
.products-section {
    background: var(--branco);
    padding: 80px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

/* CARD */
.product-card {
    background: var(--creme);
    border-radius: 28px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    transition: 0.3s;
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

/* IMAGEM */
.product-card img {
    width: 100%;
    max-width: 200px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.product-card:hover img {
    transform: scale(1.05) rotate(-2deg);
}

.products-instruction {
    margin: 14px auto 0;
    max-width: 720px;
    color: var(--marrom);
    font-size: 15px;
    font-weight: 600;
    opacity: 1;
}

.products-instruction::before {
    content: "→";
    color: var(--vermelho);
    font-weight: 800;
    margin-right: 6px;
}

/* TEXTO */
.product-card h3 {
    font-size: 18px;
    color: var(--verde);
    margin-bottom: 8px;
}

.product-card p {
    font-size: 14px;
    opacity: 0.8;
}

/* CTA */
.products-cta {
    text-align: center;
    margin-top: 40px;
}

/* RESPONSIVO */
@media (max-width: 1000px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* REPRESENTANTES */
.representatives-section {
    background: linear-gradient(180deg, #fff7d6, var(--creme));
    padding: 80px 0;
}

.representatives-content-simple {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.map-area {
    text-align: center;
}

.map-area img {
    width: 100%;
    max-width: 460px;
    opacity: 0.95;
}

.representatives-box {
    background: var(--branco);
    border-radius: 30px;
    padding: 34px;
    box-shadow: 0 16px 34px var(--sombra);
    border-left: 7px solid var(--verde);
}

.representatives-box h3 {
    color: var(--verde);
    font-size: 26px;
    margin-bottom: 14px;
}

.representatives-box p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 22px;
}

.representatives-benefits {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 28px;
}

.representatives-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--marrom);
    font-size: 15px;
    font-weight: 700;
}

.representatives-benefits i {
    color: var(--vermelho);
    font-size: 23px;
}

@media (max-width: 900px) {
    .representatives-content-simple {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .representatives-benefits li {
        justify-content: center;
    }
}

/* WHERE BUY */
.where-section {
    background: var(--branco);
    padding: 80px 0;
}

.where-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.where-text h2 {
    font-size: 36px;
    line-height: 1.15;
    color: var(--marrom);
    margin-bottom: 18px;
}

.where-text p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 14px;
}

.where-buttons {
    display: flex;
    gap: 15px;
    margin-top: 26px;
    flex-wrap: wrap;
}

.where-box {
    background: linear-gradient(135deg, var(--creme), #fff2c4);
    border-radius: 32px;
    padding: 34px;
    box-shadow: 0 16px 34px var(--sombra);
    border: 1px solid rgba(90, 53, 22, 0.10);
}

.where-box h3 {
    color: var(--verde);
    font-size: 24px;
    margin-bottom: 22px;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.store-card {
    background: var(--branco);
    color: var(--marrom);
    padding: 18px;
    border-radius: 18px;
    font-size: 15px;
    font-weight: 800;
    text-align: center;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
    border: 1px solid rgba(22, 138, 47, 0.10);
}

@media (max-width: 900px) {
    .where-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .where-buttons {
        justify-content: center;
    }
}

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

    .where-text h2 {
        font-size: 30px;
    }
}

/* FINAL CTA */
.final-cta-section {
    background: var(--branco);
    padding: 80px 0;
}

.final-cta-box {
    background: linear-gradient(135deg, var(--verde), #0f5f1f);
    border-radius: 36px;
    padding: 55px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 45px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 22px 45px rgba(0,0,0,0.18);
}

.final-cta-box::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: var(--amarelo);
    border-radius: 50%;
    right: -80px;
    top: -100px;
    opacity: 0.22;
}

.final-cta-text,
.final-cta-contact {
    position: relative;
    z-index: 2;
}

.section-tag.light {
    background: rgba(255,255,255,0.18);
    color: var(--amarelo);
}

.final-cta-text h2 {
    color: var(--branco);
    font-size: 36px;
    line-height: 1.15;
    margin-bottom: 16px;
}

.final-cta-text p {
    color: var(--branco);
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 620px;
}

.final-cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.btn-white,
.btn-yellow {
    padding: 14px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    transition: 0.3s;
}

.btn-white {
    background: var(--branco);
    color: var(--verde);
}

.btn-yellow {
    background: var(--amarelo);
    color: var(--marrom);
}

.btn-white:hover,
.btn-yellow:hover {
    transform: translateY(-3px);
}

.final-cta-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-mini-card {
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 20px;
    padding: 18px;
    color: var(--branco);
}

.contact-mini-card strong {
    display: block;
    color: var(--amarelo);
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.contact-mini-card span {
    font-size: 15px;
    font-weight: 700;
}

@media (max-width: 900px) {
    .final-cta-box {
        grid-template-columns: 1fr;
        padding: 38px 24px;
        text-align: center;
    }

    .final-cta-buttons {
        justify-content: center;
    }

    .final-cta-text h2 {
        font-size: 30px;
    }
}

/* FOOTER */
.site-footer {
    background: linear-gradient(180deg, #0f5f1f, var(--verde));
    color: var(--branco);
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 60px 0;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 800;
    color: var(--amarelo);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-logo {
    width: 140px;
    margin-bottom: 15px;
}

/* LINKS */
.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--branco);
    font-size: 14px;
    opacity: 0.9;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--amarelo);
}

/* CONTATO */
.footer-contact li {
    font-size: 14px;
    margin-bottom: 10px;
}

/* BOTTOM */
.footer-bottom {
    background: rgba(0,0,0,0.15);
    text-align: center;
    padding: 18px 0;
    font-size: 13px;
    opacity: 0.9;
}

/* CREDIT */
.credit {
    margin-left: 8px;
    opacity: 0.9;
}

.credit a {
    color: var(--amarelo);
    font-weight: 800;
    transition: 0.3s;
}

.credit a:hover {
    color: var(--vermelho);
}

.footer-contact-box p {
    color: var(--branco);
    line-height: 1.7;
    margin: 18px 0 24px;
    opacity: 0.9;
}

.footer-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--amarelo);
    color: var(--marrom);
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 800;
    transition: 0.3s;
}

.footer-contact-btn:hover {
    background: var(--branco);
    transform: translateY(-2px);
}

.footer-balanced {
    grid-template-columns: 1.2fr 1.1fr 0.9fr;
    align-items: flex-start;
}

.footer-brand {
    max-width: 360px;
}

.footer-links-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.footer-contact-box {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 24px;
    padding: 26px;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

@media (max-width: 1000px) {
    .footer-content-large {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-content-large {
        grid-template-columns: 1fr;
    }

    .footer-contact li {
        justify-content: center;
    }
}

@media (max-width: 1000px) {
    .footer-balanced {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-links-area {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-links-area {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* ICONS */
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    font-size: 20px;
    color: var(--amarelo);
    min-width: 22px;
}

.footer-contact span {
    font-size: 14px;
}

/* HOVER NOS LINKS DO FOOTER */
.footer-col a {
    display: inline-block;
    position: relative;
}

.footer-col a::after {
    content: "";
    width: 0;
    height: 2px;
    background: var(--amarelo);
    position: absolute;
    left: 0;
    bottom: -3px;
    transition: 0.3s;
}

.footer-col a:hover::after {
    width: 100%;
}

/* ÍCONES DO INDEX */
.feature-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--amarelo), #fff0a0);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 32px;
    color: var(--verde);
}

.feature-card:hover .feature-icon i {
    color: var(--vermelho);
}

.store-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.store-card i {
    font-size: 22px;
    color: var(--verde);
}

@media (max-width: 980px) {
    .navbar {
        position: relative;
    }

    .nav-menu {
        position: absolute;
        top: 82px;
        left: 0;
        width: 100%;
        background: var(--branco);
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 18px 0;
        box-shadow: 0 12px 25px var(--sombra);
        border-top: 1px solid rgba(0,0,0,0.06);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 14px 0;
    }
}