/* ========= RESET ========= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
    background: #fff;
}

/* ========= CONTAINERS ========= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ========= HEADER ========= */
header {
    background: #3e2723; /* marrom escuro */
    color: #fff;
    position: fixed; /* Alterado de sticky para fixed */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid #2e7d32;
    width: 100%;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 20px;
    position: relative;
}

/* left-group: ícone hamburger + logo (fica à esquerda no mobile) */
.left-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

/* Logo */
.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    z-index: 2;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    height: 48px; /* valor calculado para ficar IDENTICO ao texto original */
    width: auto;
    display: block;
}

.logo span {
    color: #f3d5aa;
}

/* Nav: centralizado em desktop */
nav {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* Nav default (desktop layout) */
nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: #c8e6c9;
}

/* Botão Contato (desktop): À direita do menu */
.contato-btn {
    background: #2e7d32;
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.4);
    flex-shrink: 0;
}

/* se exibido em mobile quando menu abre */
.contato-btn.mobile-visible {
    display: block;
}

/* Botão menu responsivo (hamburger) */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1001;
    background: transparent;
    border: none;
    color: #fff;
    padding: 6px 8px;
}

/* ========= HERO ========= */
.hero {
    position: relative;
    background: url('https://forest-wood.com/wp-content/uploads/2022/05/shutterstock_1910534524-1024x395.jpg') center/cover no-repeat;
    height: 100vh; /* Mudei de 90vh para 100vh */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    margin-top: 0 !important; /* REMOVIDO margin-top: 80px */
    padding-top: 0 !important;
}

.hero .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding-top: 100px; /* ADICIONADO para compensar header fixo */
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

/* ========= BOTÃO FALE CONOSCO ========= */
.btnc-cta2 {
    display: inline-block;
    background: linear-gradient(135deg, #2e7d32 0%, #4caf50 100%);
    color: #fff !important;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.4);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid transparent;
    margin-top: 20px;
}

.btnc-cta2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
    z-index: -1;
    transition: opacity 0.4s ease;
    opacity: 0;
    border-radius: 50px;
}

.btnc-cta2:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(46, 125, 50, 0.6);
}

.btnc-cta2:hover::before {
    opacity: 1;
}

.btnc-cta2:active {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.5);
}

/* Efeito de pulso opcional */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
    70% { box-shadow: 0 0 0 12px rgba(76, 175, 80, 0); }
    100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

.btnc-cta2.pulse { animation: pulse 2s infinite; }

.btnc-cta2.simple {
    background: #2e7d32;
    padding: 14px 32px;
    border: 2px solid #fff;
}

.btnc-cta2.simple:hover {
    background: #fff;
    color: #2e7d32 !important;
    border: 2px solid #2e7d32;
}

/* Ícone no botão (opcional) */
.btnc-cta2.with-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
    .btnc-cta2 {
        padding: 14px 28px;
        font-size: 1.1rem;
    }
}

/* ========= SEÇÕES ========= */
section {
    padding: 60px 20px;
    position: relative;
    border-top: 2px solid #eee; /* linha fina cinza */
}
section:first-of-type { 
    border-top: none; 
    padding-top: 40px; /* Ajuste para compensar header fixo */
}

/* ========= TÍTULOS PADRÃO ========= */
section h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2e7d32;
    position: relative;
    font-weight: 700;
}
section h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #0b7510a1;
    margin: 10px auto 0;
    border-radius: 3px;
}

/* ========= GRID DE CARDS ========= */
.grid {
    display: grid;
    gap: 20px;
}
@media (min-width: 768px) {
    .grid { grid-template-columns: repeat(3, 1fr); }
}

/* ========= PRODUTOS ========= */
.produtos {
    padding: 80px 0;
}

.produtos .card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.produtos .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* CORREÇÃO CRÍTICA: ESTILO DAS IMAGENS */
.produtos .card img {
    width: 100%;
    height: 200px; /* Altura fixa */
    object-fit: cover; /* Preenche o espaço mantendo proporção */
    object-position: center; /* Centraliza a imagem */
    display: block;
}

/* TRATAMENTO ESPECIAL PARA A IMAGEM DA PORTA */
.produtos .card:nth-child(4) img {
    object-fit: contain; /* Mostra imagem completa sem cortar */
    background-color: #f8f8f8; /* Fundo neutro para transparência */
    padding: 10px; /* Espaço ao redor */
}

.produtos h3 {
    margin: 15px 0 10px;
    font-weight: 700;
    padding: 0 15px;
    font-family: 'Montserrat', sans-serif;
    color: #2c3e50;
    font-size: 1.3rem;
}

.produtos p {
    padding: 0 15px 15px;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    flex-grow: 1;
}

.card-btn {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0 20px 20px;
    text-align: center;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.card-btn:hover {
    background-color: #1da851;
}

/* Ajuste de responsividade para imagens */
@media (max-width: 768px) {
    .produtos .card img {
        height: 180px; /* Altura menor em tablets */
    }
}

@media (max-width: 480px) {
    .produtos .card img {
        height: 160px; /* Altura menor em celulares */
    }
    
    .produtos .card:nth-child(4) img {
        max-height: 160px; /* Limite máximo para porta */
    }
}

/* ========= DIFERENCIAIS ========= */
.diferenciais { 
    background: #faf3e0; 
    padding: 60px 20px;
}

.diferenciais h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #2e7d32;
}

/* Grid responsivo: 2 por linha desktop, 1 por linha mobile */
.diferenciais .grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 cards por linha */
    gap: 30px;
    justify-content: center; /* centraliza a grade */
    max-width: 1000px; /* largura máxima da seção */
    margin: 0 auto;
}

/* Limitar largura de cada card */
.diferenciais .feature {
    max-width: 450px; /* largura máxima de cada card */
    background: #fff;
    border-left: 6px solid; /* cor diferente para cada card */
    padding: 25px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diferenciais .feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Ícone e título */
.diferenciais i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: inherit; /* herda cor da borda */
}

.diferenciais h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
}

.diferenciais p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

/* Borda colorida lateral diferente para cada card */
.diferenciais .feature:nth-child(1) { border-color: #ff7043; } /* laranja */
.diferenciais .feature:nth-child(2) { border-color: #29b6f6; } /* azul */
.diferenciais .feature:nth-child(3) { border-color: #ab47bc; } /* roxo */
.diferenciais .feature:nth-child(4) { border-color: #ffa726; } /* amarelo-alaranjado */

/* MOBILE */
@media (max-width: 768px) {
    .diferenciais .grid {
        grid-template-columns: 1fr; /* 1 card por linha no mobile */
        gap: 20px;
    }
    .diferenciais .feature {
        max-width: 100%; /* ocupa 100% no mobile */
        text-align: left;
    }
}


/* ========= SOBRE ========= */
.sobre-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.sobre-content img {
    width: 100%;
    border-radius: 8px;
}
.sobre-content div { font-size: 1.05rem; }
@media (min-width: 768px) {
    .sobre-content { flex-direction: row; align-items: center; }
    .sobre-content div { flex: 1; }
    .sobre-content img { max-width: 50%; }
}

/* ========= DEPOIMENTOS ========= */
.depoimentos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 80px 0 150px 0;
}
.depoimentos .depoimento {
    background: #fff;
    border-left: 4px solid #2e7d32;
    padding: 20px;
    border-radius: 6px;
    font-style: italic;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.depoimentos span {
    display: block;
    margin-top: 10px;
    font-weight: 600;
    font-style: normal;
    color: #555;
}

/* ========= FORMULÁRIO ========= */
.form-contato {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 15px;
}
.form-contato input,
.form-contato textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}
.form-contato button {
    cursor: pointer;
    background: #2e7d32;
    color: #fff;
    border-radius: 6px;
    padding: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
}
.form-contato button:hover {
    background: #1b5e20;
    transform: translateY(-2px);
}

/* ========= FOOTER ========= */
footer {
    background: #3e2723;
    color: #fff;
    text-align: center;
    padding: 25px 15px;
    font-size: 0.9rem;
}
footer i { margin-right: 6px; }

/* ========= COR DO NÚMERO DO TELEFONE NO FOOTER ========= */
footer p:last-child a {
    color: #f3d5aa !important;
    text-decoration: none; /* Remove o sublinhado se quiser */
}

/* Remove o sublinhado no hover também */
footer p:last-child a:hover {
    text-decoration: none;
}

/* Ícone mantém a mesma cor */
footer p:last-child .fa-whatsapp {
    color: #f3d5aa !important;
}

/* ========= SEÇÃO CONTATO ========= */
.contato {
  background: #f9f9f9;
  border-top: 2px solid #eee;
  border-bottom: 2px solid #eee;
}
.form-contato {
  background: #fff;
  border: 1px solid #ddd;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  max-width: 600px;
  margin: 0 auto;
}


/* Container fixo para os botões flutuantes */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px; /* espaço entre os botões */
    z-index: 9999;
}

/* Botão WhatsApp */
#btnWhatsApp {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366;
    color: #fff;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

#btnWhatsApp:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

/* Botão subir página */
#btnScrollTop {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #3e2723;
    color: #fff;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    cursor: pointer;
    display: none; /* aparece só ao rolar */
}

#btnScrollTop:hover {
    background-color: #3e2723b9;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

.contato-info {
    font-size: 1rem;
    color: #333;
    margin: 8px 0 20px; /* espaço entre o título e o formulário */
    text-align: center; /* centraliza o texto */
}

/* Botão hamburger estilizado */
.menu-toggle {
    background: #68390452;   /* cinza quase branco */
    color: #ffffff;           /* mantém o ícone branco */
    border-radius: 8px;    /* borda levemente arredondada */
    padding: 8px 10px;     /* espaço interno */
    font-size: 1.6rem;     /* tamanho do ícone */
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2); /* borda suave */
    transition: background 0.3s, transform 0.2s;
}

/* Hover */
.menu-toggle:hover {
    background: #61422e69;   /* um pouco mais escuro no hover */
    transform: scale(1.05);
}

/* ========= RESPONSIVIDADE ========= */

@media (max-width: 900px) {
    .header-container {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        height: 64px;
        padding: 8px 12px;
        gap: 12px;
        position: relative;
    }
    
    /* CORREÇÃO: Logo deslocado mais para a direita */
    .left-group {
        display: flex;
        align-items: center;
        gap: 15px; /* Aumentado o gap */
        flex: 0 0 auto;
        order: 1;
        margin-left: 10px; /* Desloca mais para a direita */
    }
    
    .menu-toggle {
        display: block;
        order: 0;
        z-index: 1001;
        margin-right: 5px;
    }
    
    .logo {
        order: 1;
        font-size: 1.3rem;
        white-space: nowrap;
        flex-shrink: 0;
        margin-left: 5px; /* Adicionado margem para deslocar mais */
        /* Removida a centralização absoluta que causava sobreposição */
        position: static;
        transform: none;
    }
    
    .logo img {
        width: 120px;
        height: auto;
        max-width: none !important;
    }

    /* Ajuste adicional para mover o logo mais para a direita */
    .logo-container {
        display: flex;
        align-items: center;
        gap: 8px;
        padding-left: 10px; /* Adiciona padding para deslocar mais */
    }

    /* ESCONDER botão desktop no mobile */
    .contato-btn { display: none; }

    nav {
        grid-column: 2 / 3;
        position: relative;
        width: 100%;
        z-index: 999;
        order: 2;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        background: #3e2723;
        width: 100%;
        padding: 0;
        gap: 0;
        margin: 0;
        box-sizing: border-box;
        position: absolute;
        left: 0;
        top: 100%;
        border-radius: 0 0 10px 10px;
        overflow: hidden;
        z-index: 999;
        border-top: none;
        box-shadow: 0 12px 30px rgba(0,0,0,0.35);
    }
    
    nav ul.active {
        display: flex;
        border: 1px solid rgba(255,255,255,0.95);
        background-clip: padding-box;
    }
    
    nav li {
        width: 100%;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    nav li:last-child { border-bottom: none; }
    
    nav a {
        display: block;
        width: 100%;
        padding: 18px 22px;
        font-size: 1.15rem;
        font-weight: 700;
        color: #fff;
        text-align: center;
    }
    
    nav ul, nav li, nav a {
        overflow: visible;
        white-space: normal;
        word-break: break-word;
    }
    
    nav { position: static; transform: none; }
    
    /* AJUSTE DO HERO PARA MOBILE */
    .hero {
        margin-top: 0 !important;
        height: 100vh;
    }
    
    .hero-content {
        padding-top: 80px; /* Ajuste para mobile */
    }
}

/* Desktop */
@media (min-width: 901px) {
    .menu-toggle {
        display: none;
    }
    
    nav { 
        transform: translate(-50%, -50%); 
        position: absolute;
        left: 50%;
        top: 50%;
    }
    
    .contato-btn { display: inline-block; }
    
    nav ul {
        display: flex !important;
        position: static;
        flex-direction: row;
        width: auto;
        background: transparent;
        box-shadow: none;
        border: none;
        transform: none;
    }
    
    nav li { border-bottom: none; }

    /* Esconde o item Fale Conosco mobile */
    .fale-conosco-mobile { display: none; }
}

/* ===== Ajuste Header Mobile (todos os mobiles ≤900px) ===== */
@media (max-width: 900px) {
    header .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 10px;
    }

    /* CORREÇÃO: Layout flex simples para mobile */
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .left-group {
        display: flex;
        align-items: center;
        gap: 15px; /* Aumentado */
        margin-left: 15px; /* Adicionado para deslocar mais */
    }
    
    .logo {
        font-size: 1.3rem;
        white-space: nowrap;
        margin-left: 10px; /* Adicionado para deslocar mais */
    }
    
    .logo span {
        font-size: 1.3rem;
        font-weight: 800;
    }

    /* Esconde o botão desktop */
    .contato-btn {
        display: none !important;
    }

    /* Menu */
    nav {
        position: relative;
        width: 100%;
        z-index: 999;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        background: #3e2723;
        width: 100%;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        position: absolute;
        left: 0;
        top: 100%;
        border-radius: 0 0 10px 10px;
        overflow: hidden;
        z-index: 999;
        box-shadow: 0 12px 30px rgba(0,0,0,0.35);
    }
    
    nav ul.active { display: flex; }

    nav li {
        width: 100%;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    nav li:last-child { border-bottom: none; }

    nav a {
        display: block;
        width: 100%;
        padding: 18px 22px;
        font-size: 1.15rem;
        font-weight: 700;
        color: #fff;
        text-align: center;
    }

    /* Botão Fale Conosco mobile */
    nav ul li.fale-conosco-mobile {
        display: block;
        order: 999; /* último item */
    }
    
    nav ul li.fale-conosco-mobile a {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        padding: 14px 20px;
        border-radius: 6px;
        text-decoration: none;
        font-size: 1.2rem; /* fonte maior */
        font-weight: 600;
        background-color: #25D366;
        color: #fff;
    }
    
    nav ul li.fale-conosco-mobile a:hover {
        background-color: #20b358;
    }
    
    nav ul li.fale-conosco-mobile i {
        font-size: 1.3rem;
    }

    /* Ícone hambúrguer */
    .menu-toggle { 
        font-size: 2rem; 
        padding: 5px;
        display: block;
        margin-left: 5px; /* Adicionado para deslocar menu */
    }

    nav ul, nav li, nav a {
        overflow: visible;
        white-space: normal;
        word-break: break-word;
    }
    
    nav { position: static; transform: none; }
}

/* ===== Desktop normal ===== */
@media (min-width: 901px) {
    .contato-btn { display: inline-block; }
    
    nav ul {
        display: flex !important;
        position: static;
        flex-direction: row;
        width: auto;
        background: transparent;
        box-shadow: none;
        border: none;
    }
    
    nav li { border-bottom: none; }
    
    /* Esconde item mobile no desktop */
    .fale-conosco-mobile { display: none; }
    
    /* CORREÇÃO: Garantir que o menu-toggle não apareça no desktop */
    .menu-toggle {
        display: none;
    }
}

/* Classes para efeito de header menor ao rolar (opcional) */
header.scrolled {
    height: 60px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header.scrolled .header-container {
    height: 60px;
}

header.scrolled .logo img {
    height: 40px; /* Reduz tamanho da logo quando scrolled */
}

/* Ajuste para compensar header fixo em todas as seções */
main {
    padding-top: 80px; /* Altura do header desktop */
}

@media (max-width: 900px) {
    main {
        padding-top: 64px; /* Altura do header mobile */
    }
}


/* ========= AJUSTE DO ESPAÇAMENTO DOS CARDS ========= */
@media (max-width: 768px) {
    /* Aumentar o padding lateral do container */
    .produtos .container {
        padding: 0 8px !important; /* Aumentado de 5px para 15px */
    }
    
    /* Aumentar o padding lateral do grid */
    .produtos .grid {
        padding: 0 6px !important; /* Aumentado de 5px para 10px */
        gap: 9px !important; /* Aumentado de 15px para 20px */
    }
    
    /* Ajustar os cards com margem interna */
    .card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        border-radius: 10px !important; /* Bordas mais arredondadas */
        overflow: hidden !important;
    }
    
    /* Aumentar padding interno dos cards */
    .card h3 {
        padding: 15px 15px 10px !important; /* Aumentado de 15px para 20px */
        font-size: 1.3rem !important;
    }
    
    .card p {
        padding: 0 15px 15px !important; /* Aumentado de 15px para 20px */
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }
    
    .card-btn {
        margin: 0 15px 15px !important; /* Aumentado de 15px para 20px */
        padding: 14px !important; /* Aumentado de 12px para 14px */
        font-size: 1rem !important;
        border-radius: 8px !important;
    }
}

/* Ajuste para telas muito pequenas */
@media (max-width: 430px) {
    .produtos .container {
        padding: 0 12px !important; /* Um pouco menor pra telas pequenas */
    }
    
    .produtos .grid {
        padding: 0 8px !important;
        gap: 18px !important;
    }
    
    .card {
        border-radius: 8px !important;
    }
    
    .card h3 {
        padding: 18px 18px 8px !important;
        font-size: 1.2rem !important;
    }
    
    .card p {
        padding: 0 18px 18px !important;
        font-size: 0.95rem !important;
    }
    
    .card-btn {
        margin: 0 18px 18px !important;
        padding: 13px !important;
        font-size: 0.95rem !important;
    }
}

/* iPhone SE e muito pequenos */
@media (max-width: 375px) {
    .produtos .container {
        padding: 0 10px !important;
    }
    
    .produtos .grid {
        padding: 0 6px !important;
        gap: 16px !important;
    }
    
    .card h3 {
        padding: 16px 16px 8px !important;
    }
    
    .card p {
        padding: 0 16px 16px !important;
    }
    
    .card-btn {
        margin: 0 16px 16px !important;
        padding: 12px !important;
    }
}

/* Adicionar sombra e destaque aos cards */
@media (max-width: 768px) {
    .card {
        box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
        transition: transform 0.3s ease, box-shadow 0.3s ease !important;
        border: 1px solid rgba(0,0,0,0.05) !important; /* Borda sutil */
    }
    
    .card:hover {
        transform: translateY(-5px) !important;
        box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
    }
}