* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hero-produtos {
    width: 100%;
    min-height: 60vh;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: rgb(94, 87, 87);
    background-image: 
        url("../images/fundo de planta 1.png");

    background-position: center 70%;
    background-size: 120%;
    background-repeat: no-repeat;
}


.hero-produtos h1 {
    font-size: clamp(28px, 5vw, 50px);
    margin-bottom: 15px;
}

.hero-produtos p {
    font-size: clamp(16px, 2vw, 20px);
}


:root {
    --green-primary: #0b4e23;
    --green-dark: #15803d;
    --green-light: #dcfce7;
    --green-50: #f0fdf4;
    --green-800: #014219;
    --gray-50: #d1d1d1;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--gray-50);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ========================================
   HEADER E NAVEGAÇÃO
======================================== */
.header {
    background-color: var(--green-primary);
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: auto;
    margin-left: -40px;
}

@media (max-width: 768px) {
    /* Evita que o logo fique cortado em telas pequenas */
    .logo {
        margin-left: 0;
    }
}

.logo-icon {
    width: 32px;
    height: 32px;
    fill: white;
}

/* Uniform logo image size across pages */
.logoimg {
    width: 48px;
    height: auto;
    display: block;
}

/* Floating WhatsApp button (duplicate from Projeto.css to ensure availability) */
.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.35);
    z-index: 9999;
    animation: pulseWhats 2s infinite;
    transition: transform 0.3s ease;
}

.whatsapp-btn img {
    width: 36px;
    height: 36px;
}

.whatsapp-btn:hover {
    transform: scale(1.15);
}

@keyframes pulseWhats {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .whatsapp-btn { width: 55px; height: 55px; bottom: 20px; right: 20px; }
    .whatsapp-btn img { width: 28px; height: 28px; }
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    .mobile-nav {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .mobile-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 1rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    .nav-desktop {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    color: rgb(255, 255, 255);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    background-color: var(--green-dark);
}

.btn-login {
    background-color: white;
    color: #16a34a;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-login:hover {
    background-color: var(--green-light);
}
.btn-signup {
     background-color: #16a34a;
     color: white;
     padding: 0.5rem 1rem;
     border-radius: 0.5rem;
     text-decoration: none;
     transition: background-color 0.3s;
     margin-right: 0.5rem;
 }

 .btn-signup:hover {
     background-color: #15803d;
 }

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-nav-link {
    color: white;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background-color: var(--green-dark);
}

/* ========================================
   CONTEÚDO PRINCIPAL
======================================== */
.page-container {
    min-height: calc(100vh - 64px);
    padding: 3rem 1rem;
    flex: 1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-title {
    font-size: 3rem;
    color: var(--green-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   GRID DE PRODUTOS
======================================== */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.content-loading {
    grid-column: 1 / -1;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--gray-200);
    color: var(--green-primary);
    text-align: center;
}

.content-loading p {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.content-loading-spinner {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 4px solid rgba(11, 78, 35, 0.16);
    border-top-color: var(--green-primary);
    animation: content-loading-spin 0.8s linear infinite;
}

.content-loading--message {
    min-height: 120px;
    background: rgba(255, 255, 255, 0.92);
}

.content-loading--error {
    color: #9f1239;
}

@keyframes content-loading-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1400px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ========================================
   CARD DE PRODUTO
======================================== */
.product-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
}

.badge-rh {
    background-color: var(--green-primary);
}

.badge-autocuidado {
    background-color: #014219;
}

.product-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #f59e0b;
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.product-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.star {
    color: #fbbf24;
    font-size: 1rem;
}

.product-name {
    font-size: 1.25rem;
    color: var(--green-primary);
    margin-bottom: 0.75rem;
    font-weight: 600;
    line-height: 1.3;
}

.product-description {
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex: 1;
}

.product-features li {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    gap: 1rem;
}

.product-card.is-budget-only .product-footer {
    justify-content: center;
}

.product-card.is-budget-only .product-price {
    display: none;
}

.product-card.is-budget-only .btn-buy {
    margin: 0 auto;
}

.product-price {
    font-size: 1.5rem;
    color: var(--green-primary);
    font-weight: 700;
}

.btn-buy {
    background-color: var(--green-primary);
    color: white;
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.btn-buy:hover {
    background-color: var(--green-dark);
    transform: scale(1.05);
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

/* ========================================
   SEÇÃO DE BENEFÍCIOS
======================================== */
.benefits-section {
    background-color: var(--green-50);
    border-radius: 0.75rem;
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.benefits-title {
    text-align: center;
    font-size: 2rem;
    color: var(--green-primary);
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    text-align: center;
}

.benefit-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--green-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.benefit-title {
    font-size: 1.25rem;
    color: var(--green-primary);
    margin-bottom: 0.5rem;
}

.benefit-text {
    color: var(--gray-600);
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background-color: var(--green-800);
    color: white;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-logo-icon {
    width: 24px;
    height: 24px;
    fill: white;
}

.footer-heading {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-text {
    color: #d1fae2;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #d1fae5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #014200ea;
    margin-bottom: 0.75rem;
}

.footer-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.social-icon {
    width: 18px;
    height: 18px;
    display: block;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    text-align: center;
    color: #d1fae5;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .product-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-buy {
        width: 100%;
        justify-content: center;
    }
}
.logoimg{
    width: 120px;
    height: 120px;
}

/* ========================================
   SIDEBAR NAVEGAÇÃO MÓVEL
======================================== */
.left-sidebar {
    position: fixed;
    left: -280px;
    top: 0;
    height: 100%;
    width: 280px;
    background: var(--green-primary);
    color: white;
    transition: left 0.3s ease;
    z-index: 1199;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding: 1rem;
}

.left-sidebar.open {
    left: 0;
}

.left-sidebar-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

.left-sidebar-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: opacity 0.2s;
}

.left-sidebar-close:hover {
    opacity: 0.8;
}

.left-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.left-sidebar-nav a,
.left-sidebar-nav .btn-login,
.left-sidebar-nav .btn-signup {
    color: white;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    transition: background-color 0.2s;
    display: block;
}

.left-sidebar-nav a:hover,
.left-sidebar-nav .btn-login:hover,
.left-sidebar-nav .btn-signup:hover {
    background-color: var(--green-dark);
}

.left-sidebar-nav a.active {
    background-color: var(--green-dark);
}

.left-sidebar-nav .btn-login {
    background-color: white;
    color: var(--green-primary);
    font-weight: 600;
    margin-top: 1rem;
}

.left-sidebar-nav .btn-login:hover {
    background-color: var(--green-light);
}

.left-sidebar-nav .btn-signup {
    background-color: var(--green-dark);
    color: white;
    font-weight: 600;
}

.left-sidebar-nav .btn-signup:hover {
    background-color: #12703a;
}

      /* ===== FOOTER PROFISSIONAL ===== */
.footer-pro {
    background-color: #0b4e23;
    color: #e6f7ee;
    padding: 3.5rem 1.5rem 1.5rem;
}

.footer-pro-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-pro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-pro-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-pro-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d1fae5;
}

.footer-pro-logo {
    width: 150px;
    margin-bottom: 1rem;
}

.footer-pro-col ul {
    list-style: none;
    padding: 0;
}

.footer-pro-col ul li {
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    color: #bbf7d0;
}

.footer-pro-col ul li a {
    color: #bbf7d0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-pro-col ul li a:hover {
    color: #ffffff;
}

/* Contato */
.footer-pro-contact li {
    line-height: 1.5;
}

/* Redes sociais */
.footer-pro-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.footer-pro-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-pro-social a:hover {
    background: rgba(255,255,255,0.3);
}

/* Linha inferior */
.footer-pro-bottom {
    margin-top: 2.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 0.85rem;
    color: #bbf7d0;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    .footer-pro-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-pro-social {
        justify-content: center;
    } 
}

.icon-instagram svg {
    width: 18px;
    height: 18px;
    fill: #ffffff;
}


/*==Tela de produtos imagens=====*/

@media (max-width: 768px) {
    .hero-produtos {
        min-height: 38vh; 
        background-size: 125%; 
        background-position: center 55%;
        padding: 20px 15px;
    }
}
