/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navbar - CORRIGIDO para Responsividade */
.navbar {
    background-color: #000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    min-height: 80px; /* Altura mínima para a navbar */
}


/* ========== CORREÇÕES DO LOGO - CANTO SUPERIOR ESQUERDO ========== */
.nav-logo {
    flex: 0 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-logo a {
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    padding: 5px 0;
}

.logo-img {
    max-height: 80px;
    height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Efeito hover no logo */
.logo-img:hover {
    transform: scale(1.05);
}

/* Navbar ajustada */
.navbar {
    background-color: #000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: 90px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    height: 100%;
    min-height: 80px;
    position: relative; /* Para posicionamento absoluto do logo */
}

/* ========== DESKTOP - LOGO NO CANTO SUPERIOR ESQUERDO ========== */
@media (min-width: 769px) {
    .nav-logo {
        position: absolute; /* Tira do fluxo normal */
        left: 20px; /* 5px da borda esquerda */
        top: 5px; /* 5px do topo */
        margin: 0; /* Remove qualquer margem */
        z-index: 101; /* Fica acima de outros elementos */
    }
    
    .logo-img {
        max-height: 85px;
        min-height: 60px;
    }
    
    .navbar {
        min-height: 100px;
    }
    
    /* Ajusta o container de busca para não sobrepor */
    .search-container {
        margin-left: 100px; /* Dá espaço para o logo */
    }
    
    /* Ajusta o menu para não sobrepor */
    .nav-menu {
        margin-left: auto;
    }
}

/* ========== MOBILE - LOGO CENTRALIZADO ========== */
@media (max-width: 768px) {
    .nav-logo {
        position: static; /* Volta ao fluxo normal */
        margin: 0 auto; /* Centraliza horizontalmente */
        order: 1; /* Primeiro elemento */
        width: 100%; /* Ocupa largura total */
        justify-content: center; /* Centraliza conteúdo */
        text-align: center;
    }
    
    .nav-logo a {
        justify-content: center; /* Centraliza o link */
        width: 100%;
    }
    
    .logo-img {
        max-height: 70px;
        height: auto;
    }
    
    .navbar {
        min-height: 85px;
    }
    
    .nav-container {
        min-height: 70px;
        flex-direction: column; /* Muda para coluna no mobile */
        gap: 0.5rem;
        padding: 0.5rem 3%;
    }
    
    /* NOVA ORDEM MOBILE - CORRIGIDA */
    /* 1. Logo centralizado */
    .nav-logo {
        order: 1;
        width: 100%;
        text-align: center;
    }

    /* 2. Container com busca e hamburger lado a lado */
    .nav-controls-container {
        order: 2;
        display: flex;
        width: 100%;
        align-items: center;
        gap: 1rem;
    }

    /* 3. Campo de pesquisa */
    .search-container {
        order: 1;
        flex: 1;
        margin: 0;
    }

    /* 4. Hamburger menu */
    .nav-controls {
        order: 2;
        margin: 0;
    }
    
    /* 5. Menu de navegação */
    .nav-menu {
        order: 3;
    }
}

/* Mobile muito pequeno */
@media (max-width: 480px) {
    .logo-img {
        max-height: 65px;
    }
    
    .navbar {
        min-height: 80px;
    }
    
    .nav-container {
        min-height: 65px;
        padding: 0.3rem 2%;
    }
    
    .nav-controls-container {
        gap: 0.5rem;
    }
}



/* Menu de navegação no desktop */
.nav-menu {
    display: flex;
    flex-direction: row;
    position: static;
    box-shadow: none;
    padding: 0;
}

.nav-links-list {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-link {
    padding: 0.8rem 0;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s;
    border-bottom: none;
    color: #fff;
    position: relative;
}

.nav-link:hover {
    color: #fff;
}

.nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
}

.nav-link.active {
    color: #fff;
    position: relative;
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
}

/* Container para a busca e ícones/hamburger */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Hamburger Menu - Escondido no desktop */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 28px;
    height: 20px;
    justify-content: space-between;
    z-index: 101;
}

.hamburger .bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s;
}

/* Animação Hamburger to X */
.hamburger.is-active .bar:nth-child(2) {
    opacity: 0;
}
.hamburger.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Estilos de busca no Navbar - CORRIGIDO */
.search-container {
    flex: 1;
    max-width: 600px;
    margin: 0 2rem;
}

.search-form {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.search-input {
    border: none;
    padding: 10px 12px;
    background: transparent;
    width: 100%;
    outline: none;
    font-size: 1rem;
}

.search-button {
    border: none;
    background: #2c5530;
    padding: 10px 15px;
    cursor: pointer;
    color: #fff;
    transition: background 0.3s;
}

.search-button:hover {
    background: #1e3a22;
}






/* Hero Section - CORRIGIDO */
.hero {
    background: #2c5530 url('../imagens/banner.png') center center/cover no-repeat;
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Overlay escuro para melhor contraste do texto */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}






.btn-primary {
    display: inline-block;
    background: #2c5530;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #1e3a22;
}

/* Seção de Produtos */
.products-section {
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.product-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-image-container {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-category-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #2c5530;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.product-info {
    padding: 1.5rem;
    text-align: left;
}

.product-name {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #333;
    height: 3.2em;
    overflow: hidden;
}

.product-description {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 1rem;
    height: 2.7em;
    overflow: hidden;
}

.product-price {
    font-size: 1.5rem;
    color: #2c5530;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.product-code {
    font-size: 0.8rem;
    color: #aaa;
}

/* Banner Promocional */
.promo-banner {
    background-color: #2c5530;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.promo-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.promo-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.interested-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
    background: #25D366;
    color: white;
    border: none;
}

.interested-button:hover {
    background: #128C7E;
    color: white;
}

/* Breadcrumb */
.breadcrumb {
    background-color: #f8f9fa;
    padding: 1rem 5%;
    border-bottom: 1px solid #eee;
}

.breadcrumb-links {
    max-width: 1400px;
    margin: 0 auto;
    font-size: 0.9rem;
}

.breadcrumb-links a {
    color: #2c5530;
    text-decoration: none;
}

.breadcrumb-links a:hover {
    text-decoration: underline;
}

.breadcrumb-links .separator {
    margin: 0 0.5rem;
    color: #999;
}

.breadcrumb-links .current {
    color: #666;
    font-weight: bold;
}

/* Estilos da Página de Detalhes (produto.html) */
.product-detail-container {
    display: flex;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 20px;
    gap: 3rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.product-image-section {
    flex: 1;
    padding: 2rem;
}

.main-product-image {
    width: 100%;
    max-height: 450px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product-info-section {
    flex: 1;
    padding: 2rem;
}

.product-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c5530;
}

.product-price-detail {
    font-size: 2rem;
    color: #000;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.product-description-detail {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
}

.product-specs {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.product-specs h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px dashed #f0f0f0;
}

.spec-label {
    font-weight: 500;
    color: #666;
}

.spec-value {
    color: #333;
    font-weight: 500;
}

.product-actions {
    margin: 2rem 0;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    width: 100%;
}

.product-shipping {
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
    color: #666;
}

.product-shipping p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.product-shipping i {
    margin-right: 8px;
    color: #2c5530;
}

/* Estilos da Página de Pesquisa (pesquisa.html) */
.search-page-header {
    max-width: 1400px;
    margin: 2rem auto 1rem;
    padding: 0 5%;
}

.search-input-page {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1.1rem;
    transition: border-color 0.3s;
    outline: none;
    margin-bottom: 1.5rem;
}

.search-input-page:focus {
    border-color: #2c5530;
}

.search-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.search-term {
    font-weight: bold;
    color: #2c5530;
}

.search-results-count {
    font-size: 1rem;
    color: #777;
    margin-bottom: 2rem;
    display: block;
}

.no-results-container {
    padding: 4rem 0;
    text-align: center;
}

.no-results-message {
    font-size: 1.5rem;
    color: #555;
    margin-bottom: 1rem;
}

/* Footer e WhatsApp */
.footer {
    background-color: #222;
    color: #f5f5f5;
    padding-top: 3rem;
    margin-top: 3rem;
}

.footer-top {
    border-bottom: 1px solid #333;
    padding-bottom: 2rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.footer-section {
    flex: 1;
    padding: 0 1rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #fff;
    border-bottom: 2px solid #2c5530;
    padding-bottom: 5px;
    display: inline-block;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #bbb;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #fff;
}

.security-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.security-icon {
    text-align: center;
    font-size: 0.9rem;
}

.security-icon i {
    font-size: 1.5rem;
    color: #25D366;
    margin-bottom: 5px;
}

.footer-bottom {
    background-color: #1a1a1a;
    padding: 1rem 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    flex-wrap: wrap;
}

.copyright p {
    font-size: 0.8rem;
    color: #888;
    margin: 5px 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    font-size: 1.2rem;
    color: #bbb;
    transition: color 0.3s;
}

.social-link:hover {
    color: #2c5530;
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-link {
    display: block;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.whatsapp-link:hover {
    transform: scale(1.1);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ----------------------------------------------------------------- */
/* MEDIA QUERY para Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .search-container {
        margin: 0 1rem;
    }
}

/* MEDIA QUERY para Mobile (max-width: 768px) - LAYOUT CORRIGIDO */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 3%;
        align-items: center;
        gap: 1rem;
    }

    /* NOVA ORDEM MOBILE - CORRIGIDA */
    /* 1. Logo à esquerda */
    .nav-logo {
        order: 1;
        flex: 0 0 auto;
    }

    /* 2. Hamburger menu à direita */
    .nav-controls {
        order: 2;
        margin-left: auto;
    }

    /* 3. Campo de pesquisa - AGORA ENTRE LOGO E MENU */
    .search-container {
        order: 3;
        width: 100%;
        max-width: 100%;
        margin: 0.5rem 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    .search-form {
        width: 100%;
        margin: 0;
    }
    
    /* 4. Menu de navegação - ABAIXO DE TUDO */
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #000;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 1rem 5%;
        z-index: 90;
        order: 4;
    }

    .nav-menu.active {
        display: flex;
    }
    
    .nav-links-list {
        flex-direction: column;
        gap: 0;
        text-align: center;
    }

    .nav-link {
        padding: 0.8rem 0;
        border-bottom: 1px solid #333;
        width: 100%;
        display: block;
        font-size: 1rem;
    }

    .nav-link.active::after {
        left: 0;
        width: 100%;
    }
    
    /* Mostrar o Hamburger */
    .hamburger {
        display: flex;
    }
    
    /* Ajustes de Layout Mobile */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 2rem 3%;
    }
    
    .hero {
        padding: 3rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .product-detail-container {
        flex-direction: column;
        margin: 2rem 10px;
        padding: 0;
        gap: 0;
    }

    .product-image-section {
        padding: 1rem;
    }
    
    .product-info-section {
        padding: 1.5rem;
    }

    .product-title {
        font-size: 2rem;
    }
    
    .product-price-detail {
        font-size: 1.8rem;
    }

    .product-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn-large {
        width: 100%;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-section {
        padding: 0;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* MEDIA QUERY para Mobile Pequeno (max-width: 480px) - CORREÇÕES ADICIONAIS */
@media (max-width: 480px) {
    .nav-container {
        padding: 0.8rem 3%;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .search-container {
        margin: 0.3rem 0;
    }
    
    .search-input {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
    
    .search-button {
        padding: 8px 12px;
    }
    
    /* Ajuste específico para o campo de pesquisa no mobile */
    .nav-container {
        display: grid;
        grid-template-areas: 
            "logo hamburger"
            "search search";
        grid-template-columns: 1fr auto;
        gap: 0.5rem;
    }
    
    .nav-logo {
        grid-area: logo;
        align-self: center;
    }
    
    .nav-controls {
        grid-area: hamburger;
        align-self: center;
    }
    
    .search-container {
        grid-area: search;
    }
    
    .nav-menu {
        grid-area: unset;
    }
}

/* MEDIA QUERY para Mobile Muito Pequeno (max-width: 360px) */
@media (max-width: 360px) {
    .nav-container {
        padding: 0.5rem 2%;
    }
    
    .nav-logo img {
        max-height: 35px;
    }
    
    .hamburger {
        width: 24px;
        height: 18px;
    }
    
    .search-input {
        padding: 6px 8px;
        font-size: 0.85rem;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}











/* Estilos para a página de produto */
.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #2c5530;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.product-detail-container {
    display: flex;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 20px;
    gap: 3rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.product-image-section {
    flex: 1;
    padding: 2rem;
}

.main-product-image {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-info-section {
    flex: 1;
    padding: 2rem;
}

.product-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c5530;
    line-height: 1.2;
}

.product-price-detail {
    font-size: 2.2rem;
    color: #000;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #2c5530;
}

.product-description-detail {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
}

.product-specs {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.product-specs h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px dashed #f0f0f0;
}

.spec-label {
    font-weight: 500;
    color: #666;
}

.spec-value {
    color: #333;
    font-weight: 500;
}

.product-actions {
    margin: 2.5rem 0;
}

.interested-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: #25D366;
    color: white;
    border: none;
    width: 100%;
    justify-content: center;
    text-align: center;
}

.interested-button:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.product-shipping {
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
    color: #666;
}

.product-shipping p {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.product-shipping i {
    margin-right: 10px;
    color: #2c5530;
    width: 20px;
}

/* Responsividade para página de produto */
@media (max-width: 768px) {
    .product-detail-container {
        flex-direction: column;
        margin: 1rem 10px;
        padding: 0;
        gap: 0;
    }

    .product-image-section {
        padding: 1.5rem;
    }
    
    .product-info-section {
        padding: 1.5rem;
    }

    .product-title {
        font-size: 2rem;
    }
    
    .product-price-detail {
        font-size: 1.8rem;
    }

    .product-actions {
        margin: 2rem 0;
    }
    
    .interested-button {
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .product-title {
        font-size: 1.8rem;
    }
    
    .product-price-detail {
        font-size: 1.6rem;
    }
    
    .spec-item {
        flex-direction: column;
        gap: 0.3rem;
    }
}