.elementor-6 .elementor-element.elementor-element-a44702e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-6 .elementor-element.elementor-element-c08ac2c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-6 .elementor-element.elementor-element-8fa6129{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-6 .elementor-element.elementor-element-2a1b05c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-6 .elementor-element.elementor-element-f455860{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-6 .elementor-element.elementor-element-73e922a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}@media(max-width:767px){.elementor-6 .elementor-element.elementor-element-497639e{width:100%;max-width:100%;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}}/* Start custom CSS for html, class: .elementor-element-497639e */<style>
    /* Estilo da Hero (Parte de Cima) */
    .hero#home {
        width: 100%;
        background: #1a1a1a; /* Fundo sólido para destacar a madeira de baixo */
        padding: 50px 20px;
        text-align: center;
    }

    .logo-container img {
        width: 140px; /* Logo mais discreta */
        height: auto;
        margin-bottom: 15px;
    }

    .hero-title {
        font-size: 1.6rem;
        color: #fff;
        margin: 5px 0;
    }

    .hero-subtitle {
        color: #D4AF37;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .hero-description {
        font-size: 0.9rem;
        color: #888;
    }

    /* SEÇÃO DO BOTÃO (O DESTAQUE) */
    .cta-section {
        width: 100%;
        padding: 60px 20px;
        /* Fundo Amadeirado Realista */
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                    url('https://images.unsplash.com/photo-1513519245088-0e12902e5a38?q=80&w=2070&auto=format&fit=crop');
        background-size: cover;
        background-position: center;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .cta-text {
        color: #fff;
        font-size: 1.3rem;
        margin-bottom: 25px;
        font-weight: 300;
    }

    /* O Botão Perfeitamente Centralizado */
    .btn-cta-central {
        display: inline-block;
        background-color: #D4AF37;
        color: #000;
        padding: 18px 45px;
        font-size: 1.1rem;
        font-weight: 800;
        text-decoration: none;
        text-transform: uppercase;
        border-radius: 50px;
        animation: pulse-gold 2s infinite;
        transition: 0.3s;
        border: none;
        cursor: pointer;
    }

    @keyframes pulse-gold {
        0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
        70% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(212, 175, 55, 0); }
        100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
    }
</style>/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7a96402 *//**
 * SHOWCASE - Estilos
 * Design: Minimalismo Amadeirado com Acentos Dourados
 */

.showcase {
    background-color: white;
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .showcase {
        padding: 6rem 0;
    }
}

/* ========== CABEÇALHO DA SEÇÃO ========== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header .section-subtitle {
    margin-bottom: 0.75rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-description {
    color: #666;
    max-width: 42rem;
    margin: 0 auto;
}

/* ========== GRID DE PRODUTOS ========== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

/* ========== CARDS DE PRODUTO ========== */
.product-card {
    border-radius: 0.5rem;
    padding: 1.5rem;
    background-color: white;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-1rem);
}

/* ========== IMAGEM DO PRODUTO ========== */
.product-image-wrapper {
    position: relative;
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 0.5rem;
    aspect-ratio: 1;
    background-color: #f0f0f0;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

/* ========== BADGE ========== */
.product-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background-color: var(--accent);
    color: var(--dark-text);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
}

/* ========== INFORMAÇÕES DO PRODUTO ========== */
.product-category {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
    line-height: 1.3;
}

.product-description {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* ========== RODAPÉ DO PRODUTO ========== */
.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--primary);
}

.product-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.product-link:hover {
    color: var(--primary);
}

/* ========== CTA DA SEÇÃO ========== */
.showcase-cta {
    text-align: center;
}

/* ========== RESPONSIVIDADE ========== */
@media (max-width: 640px) {
    .showcase {
        padding: 2rem 0;
    }

    .products-grid {
        gap: 0.75rem;
    }

    .product-card {
        padding: 1rem;
    }

    .product-name {
        font-size: 0.9rem;
    }

    .product-description {
        font-size: 0.8rem;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-91adc53 *//**
 * VIDEOS - Estilos
 * Design: Minimalismo Amadeirado com Acentos Dourados
 */

.videos {
    background-color: #F5F1E8;
    background-image: 
        repeating-linear-gradient(
            90deg,
            rgba(196, 165, 123, 0.03) 0px,
            rgba(196, 165, 123, 0.03) 2px,
            transparent 2px,
            transparent 4px
        );
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .videos {
        padding: 6rem 0;
    }
}

/* ========== GRID DE VÍDEOS ========== */
.videos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .videos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========== CARDS DE VÍDEO ========== */
.video-card {
    cursor: pointer;
}

/* ========== THUMBNAIL ========== */
.video-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    aspect-ratio: 16/9;
    background-color: #e0e0e0;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

/* ========== OVERLAY ========== */
.video-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.video-card:hover .video-overlay {
    background-color: rgba(0, 0, 0, 0.5);
}

/* ========== PLAY BUTTON ========== */
.play-button {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.video-card:hover .play-button {
    transform: scale(1.1);
}

.play-button svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--dark-text);
    margin-left: 0.25rem;
}

/* ========== INFORMAÇÕES DO VÍDEO ========== */
.video-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.video-card:hover .video-title {
    color: var(--primary);
}

.video-description {
    font-size: 0.875rem;
    color: #666;
}

/* ========== MODAL DE VÍDEO ========== */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 50;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16/9;
    background-color: black;
    border-radius: 0.5rem;
    overflow: hidden;
}

.video-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.video-modal-close:hover {
    background-color: white;
}

/* ========== RESPONSIVIDADE ========== */
@media (max-width: 640px) {
    .videos {
        padding: 2rem 0;
    }

    .videos-grid {
        gap: 1rem;
    }

    .video-thumbnail {
        aspect-ratio: 16/9;
    }

    .play-button {
        width: 3rem;
        height: 3rem;
    }

    .play-button svg {
        width: 1.5rem;
        height: 1.5rem;
    }

    .video-modal-content {
        max-width: 100%;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f1ab321 */<style>
    /* GRID PRINCIPAL */
    .testimonials-grid {
        display: grid;
        /* Força 2 colunas SEMPRE, inclusive no celular */
        grid-template-columns: repeat(2, 1fr); 
        gap: 10px; /* Espaço menor entre os cards para caber no celular */
        max-width: 1000px;
        margin: 30px auto;
    }

    /* CARD DO DEPOIMENTO */
    .testimonial-card {
        background: #fff;
        padding: 15px; /* Reduzi o respiro para ganhar espaço */
        border-radius: 8px;
        border-bottom: 3px solid #D4AF37;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        text-align: left;
    }

    .stars {
        color: #D4AF37;
        font-size: 0.8rem; /* Estrelas menores no celular */
        margin-bottom: 8px;
    }

    .testimonial-text {
        font-style: italic;
        color: #555;
        font-size: 0.75rem; /* Texto menor para caber na coluna estreita */
        line-height: 1.3;
        margin-bottom: 15px;
    }

    /* FOTOS E NOMES */
    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .author-image {
        width: 35px; /* Foto menor para o celular */
        height: 35px;
        border-radius: 50%;
        object-fit: cover;
    }

    .author-info h4 {
        margin: 0;
        font-size: 0.8rem; /* Nome menor */
        color: #333;
    }

    .author-role {
        margin: 0;
        font-size: 0.65rem; /* Profissão menor */
        color: #999;
    }

    /* Ajuste para telas muito pequenas */
    @media (max-width: 400px) {
        .testimonials-grid {
            gap: 5px;
        }
        .testimonial-card {
            padding: 10px;
        }
    }
</style>/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7018cfa */<style>
    /* BARRA DE CONTATO HORIZONTAL */
    .contact-bar {
        background: #1a1a1a;
        padding: 15px 0;
        border-bottom: 1px solid #333;
    }

    .container-compact {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap; /* Para o celular não quebrar */
    }

    .bar-item {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #fff;
        font-size: 0.85rem;
    }

    .bar-item .icon { color: #D4AF37; }

    /* FORMULÁRIO COMPACTO */
    .form-section {
        padding: 30px 20px;
        background: #fff;
        text-align: center;
    }

    .container-small {
        max-width: 500px;
        margin: 0 auto;
    }

    .container-small h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
        text-transform: uppercase;
        color: #333;
    }

    .minimal-form {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .form-row {
        display: flex;
        gap: 10px;
    }

    .minimal-form input, 
    .minimal-form select, 
    .minimal-form textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 0.9rem;
        outline: none;
    }

    .btn-enviar {
        background: #D4AF37;
        color: #000;
        border: none;
        padding: 12px;
        font-weight: bold;
        text-transform: uppercase;
        cursor: pointer;
        border-radius: 5px;
        transition: 0.3s;
    }

    .btn-enviar:hover { background: #b8952e; }

    /* Celular: inputs um embaixo do outro */
    @media (max-width: 480px) {
        .form-row { flex-direction: column; }
        .container-compact { gap: 10px; flex-direction: column; align-items: center; }
    }
</style>/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-417cc5a */<style>
    .footer-compacto {
        background: #1a1a1a; /* Fundo escuro premium */
        color: #fff;
        padding: 30px 20px;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }

    .footer-logo {
        color: #D4AF37; /* Dourado */
        font-size: 1.2rem;
        margin-bottom: 5px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .footer-tagline {
        font-size: 0.8rem;
        color: #888;
        margin-bottom: 20px;
    }

    /* Alinhamento dos links */
    .footer-actions {
        display: flex;
        flex-direction: column; /* Um embaixo do outro no celular */
        gap: 12px;
        align-items: center;
        margin-bottom: 20px;
    }

    .action-link {
        color: #fff;
        text-decoration: none;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: 0.3s;
    }

    .action-link:hover {
        color: #D4AF37;
    }

    .footer-divider-mini {
        height: 1px;
        background: #333;
        width: 50px;
        margin: 0 auto 15px auto;
    }

    .footer-copy {
        font-size: 0.7rem;
        color: #555;
        line-height: 1.4;
    }

    /* No Computador, os links ficam lado a lado para economizar altura */
    @media (min-width: 768px) {
        .footer-actions {
            flex-direction: row;
            justify-content: center;
            gap: 30px;
        }
    }
</style>/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ae45b51 *//**
 * WHATSAPP CTA - Estilos
 * Design: Minimalismo Amadeirado com Acentos Dourados
 */

.whatsapp-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 40;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.whatsapp-cta:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.whatsapp-cta svg {
    width: 1.75rem;
    height: 1.75rem;
    color: white;
}

/* ========== ANIMAÇÃO DE PULSE ========== */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6);
    }
}

.whatsapp-cta {
    animation: pulse 2s infinite;
}

/* ========== RESPONSIVIDADE ========== */
@media (max-width: 640px) {
    .whatsapp-cta {
        bottom: 1rem;
        right: 1rem;
        width: 3rem;
        height: 3rem;
    }

    .whatsapp-cta svg {
        width: 1.5rem;
        height: 1.5rem;
    }
}/* End custom CSS */