/* --- NON-CRITICAL CSS (Critical styles are inlined in HTML) --- */

/* --- CABEÇALHO (Non-critical styles - Critical styles are inlined) --- */
/* Header styles moved to inline critical CSS */

/* --- SEÇÃO HERO (Non-critical styles - Critical styles are inlined) --- */
/* Hero styles moved to inline critical CSS */


/* --- SEÇÃO QUEM SOMOS --- */
.about-us {
    background-color: #2b2b2b;
    color: #ffffff;
    padding: 120px 0;
    /* Aumentado de 80px para 120px */
}


.about-us .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-family: 'Quattrocento', serif;
    /* <-- FONTE ADICIONADA AQUI */
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
}


.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-images {
    flex-basis: 450px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-images img {
    width: 100%;
    border-radius: 8px;
}

/* --- SEÇÃO MODELOS POPULARES (ESTILO REFINADO) --- */
.modelos {
    background-color: #f4f4f4;
    padding: 120px 0;
}

/* Título padrão para as seções */
.modelos h2,
.titulo-secao {
    font-family: 'Quattrocento', serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 4rem;
    text-transform: uppercase;
}

.modelos-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.modelo-item {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    /* Sombra inicial mais sutil */
    display: flex;
    flex-direction: column;
    flex: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modelo-item:hover {
    transform: translateY(-10px);
    /* Efeito de elevação mais pronunciado */
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
    /* Sombra mais forte no hover */
}

.modelo-imagem {
    width: 100%;
    background-size: cover;
    background-position: center;
}

.modelo-info {
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.modelo-info h3 {
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.modelo-info p {
    font-size: 0.9rem;
    /* Fonte da descrição ligeiramente menor */
    line-height: 1.6;
    color: #666;
    flex-grow: 1;
    margin-bottom: 25px;
    /* Adiciona espaço antes do botão */
}

/* Estilo do novo botão "Ver Detalhes" */
.modelo-button {
    background-color: #1a3d7c;
    /* Cor azul escura para combinar com o site */
    color: #ffffff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    align-self: center;
    /* Centraliza o botão no card */
}

.modelo-button:hover {
    background-color: #2b5ab2;
    /* Cor um pouco mais clara no hover */
}


/* --- SEÇÃO ONDE ESTAMOS --- */
.location {
    display: flex;
    background-color: #2b2b2b;
}

.location-image {
    flex-basis: 50%;
    background-size: cover;
    background-position: top;
}

.location-content {
    flex-basis: 50%;
    color: #ffffff;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-content h2 {
    font-family: 'Quattrocento', serif;
    /* <-- FONTE ADICIONADA AQUI */
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

/* --- SEÇÃO MADEIRAS DE QUALIDADE --- */
.madeiras-qualidade {
    padding: 120px 0;
    /* Aumentado de 80px para 120px */
    background-color: #f4f4f4;
}

.madeiras-qualidade-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.madeiras-qualidade .video-box {
    flex: 1 1 55%;
}

.madeiras-qualidade .video-box iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    display: block;
    border: none;
}

.madeiras-qualidade .texto-box {
    flex: 1 1 45%;
}

.madeiras-qualidade .texto-box h2 {
    font-family: 'Quattrocento', serif;
    /* <-- FONTE ADICIONADA AQUI */
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: #333;
}


.madeiras-qualidade .texto-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* --- SEÇÃO DEPOIMENTOS --- */
.depoimentos {
    padding: 120px 0;
    /* Aumentado de 80px para 120px */
    background-color: #ffffff;
}

.titulo-secao {
    margin-bottom: 60px;
}

.depoimentos-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

.depoimento-card {
    flex: 1;
    text-align: center;
}

.depoimento-card::before {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: #c4c4c4;
    margin: 0 auto 25px auto;
}

.depoimento-texto {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
}

.depoimento-autor {
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.depoimento-autor:hover {
    color: #1a3d7c;
}

/* --- RODAPÉ --- */
.site-footer {
    background-color: #2b2b2b;
    color: #ffffff;
    padding-top: 50px;
}

.footer-top {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 25px;
}

.footer-logo img {
    height: 100px;
    width: 100px;
    border-radius: 50%;
}

.footer-logo-text .titulo-principal {
    font-family: 'Quattrocento', serif;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
}

.footer-logo-text .subtitulo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
}

.footer-gallery {
    display: flex;
    width: 100%;
    margin-bottom: 40px;
}

.footer-gallery picture {
    width: 33.333%;
    height: 250px;
    object-fit: cover;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding: 40px 0;
}

.contato-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.contato-coluna-titulo {
    flex-basis: 25%;
}

.contato-coluna-titulo h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.contato-coluna-info {
    flex-basis: 25%;
    line-height: 1.8;
}

.contato-coluna-info a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contato-coluna-info a:hover {
    color: #ffffff;
}

/* --- BOTÃO FLUTUANTE WHATSAPP --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.whatsapp-float img {
    width: 60px;
    transition: transform 0.3s ease;
}

.whatsapp-float img:hover {
    transform: scale(1.1);
}

/* --- REGRAS DE RESPONSIVIDADE --- */
@media (max-width: 900px) {

    .about-us .container,
    .location,
    .madeiras-qualidade-content,
    .modelos-grid,
    .depoimentos-grid,
    .contato-container {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .location-content {
        padding: 60px 20px;
    }

    .footer-gallery {
        flex-direction: column;
    }

    .location-image {
        display: none;
    }
}

@media (max-width: 768px) {
    /* --- MOBILE OPTIMIZATIONS (Enhanced) --- */

    /* Header padding adjustment for mobile */
    .top-header {
        padding: 20px 0;
    }

    /* Hero section mobile optimizations */
    .hero {
        min-height: 80vh;
        min-height: calc(var(--vh, 1vh) * 80);
        padding: 15px;
    }

    /* About section mobile spacing */
    .about-us {
        padding: 80px 0;
    }

    /* Models section mobile spacing */
    .modelos {
        padding: 80px 0;
    }

    /* Location section mobile optimization */
    .location-content {
        padding: 40px 20px;
    }

    /* Video section mobile optimization */
    .madeiras-qualidade {
        padding: 80px 0;
    }

    /* Testimonials mobile spacing */
    .depoimentos {
        padding: 80px 0;
    }

    /* Mobile font size adjustments */
    .about-content h2,
    .location-content h2,
    .madeiras-qualidade .texto-box h2,
    .titulo-secao {
        font-size: 2rem;
    }

    /* Footer mobile adjustments */
    .footer-logo-text .titulo-principal {
        font-size: 2rem;
    }

    .footer-logo-text .subtitulo {
        font-size: 1.2rem;
    }

    /* WhatsApp button mobile adjustment */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float img {
        width: 50px;
    }
}

/* --- EXTRA SMALL MOBILE DEVICES --- */
@media (max-width: 480px) {
    /* Container padding for very small screens */
    .container {
        padding: 0 15px;
    }

    /* Header even smaller */
    .top-header {
        padding: 15px 0;
    }

    /* Hero adjustments for small screens */
    .hero {
        min-height: 70vh;
        min-height: calc(var(--vh, 1vh) * 70);
        padding: 10px;
    }

    /* Section padding reduction */
    .about-us,
    .modelos,
    .madeiras-qualidade,
    .depoimentos {
        padding: 60px 0;
    }

    /* Typography scaling for very small screens */
    .about-content h2,
    .location-content h2,
    .madeiras-qualidade .texto-box h2,
    .titulo-secao {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    /* Text size adjustments */
    .about-content p,
    .location-content p,
    .madeiras-qualidade .texto-box p {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Model cards mobile optimization */
    .modelo-info {
        padding: 20px 15px;
    }

    .modelo-info h3 {
        font-size: 1.1rem;
    }

    .modelo-info p {
        font-size: 0.85rem;
    }

    .modelo-button {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    /* Footer optimization for small screens */
    .footer-logo img {
        height: 80px;
        width: 80px;
    }

    .footer-logo {
        gap: 15px;
    }

    .footer-gallery picture {
        width: 100%;
        height: auto;
    }

    /* Contact section mobile */
    .contato-container {
        padding: 0 15px;
        gap: 30px;
    }

    /* WhatsApp button smaller */
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-float img {
        width: 45px;
    }
}

/* --- BREAKPOINTS RESPONSIVOS --- */
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}
