/* Definições Globais e Cores (Ajustadas para o Protótipo) */
:root {
    /* Cores do Protótipo */
    --color-primary-brown: #9A5C39; /* Marrom Principal / Input */
    --color-dark-brown: #4E1E13; /* Marrom Escuro Fundo / Títulos */
    --color-light-bg: #EDEFE0; /* Fundo Principal */
    --color-green-dark: #1D4823; /* Verde Escuro */
    --color-green-light: #55D968; /* Verde Claro / Destaque */
    --color-text-dark: #000000; /* Texto Geral */
    --color-text-light: #FFFFFF; /* Texto em fundos escuros */
    --color-text-light-translucent: rgba(0, 0, 0, 0.7); /* Para texto menos escuro */
    
    /* Nova variável para a logo de fundo dos reviews */
    --color-review-logo-bg: #EAE6DB; /* Tom claro de marrom/bege para a logo */
    /* Outras variáveis */
    --color-button-gradient: linear-gradient(to right, #2D7337, #55D968); /* Gradiente ajustado */
    --color-secondary-green: #2D7337; /* Verde Intermediário */
    --color-text-quote: #260C06; 

    /* Adicionei esta variável para o fundo dos cards de produto, para garantir o tom correto */
    --color-product-card-bg: #EDEFE0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif; 
    box-sizing: border-box;
}

body {
    background-color: var(--color-light-bg);
    color: var(--color-text-dark);
    line-height: 1.6;
}

section {
    padding: 0 0;
}

/* Tipografia Comum (Ajustada) */
h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}

h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-dark-brown);
    text-align: center;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

p {
    font-size: 1rem;
    margin-bottom: 10px;
}

/* Botões - Estilo Geral */
.btn-orcamento-principal, .btn-material-entrega, .btn-diferenciais, .btn-orcamento-secundario, .btn-submit-orcamento, .btn-footer-orcamento, .btn-material-entrega-bottom {
    display: inline-block;
    padding: 15px 35px;
    border: none;
    border-radius: 12px; /* Fiel ao protótipo */
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    transition: background 0.3s ease;
    white-space: nowrap;
    background: linear-gradient(to right, #4E1E13, #9A5C39);
}

/* Botão Principal/Secundário (Marrom) */
.btn-orcamento-principal, .btn-diferenciais, .btn-orcamento-secundario {
    background-color: var(--color-primary-brown);
    color: var(--color-text-light);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
}

.btn-orcamento-principal:hover, .btn-diferenciais:hover, .btn-orcamento-secundario:hover {
    background-color: var(--color-dark-brown);
}

/* Botões de Ação (Verde Gradiente) */
.btn-material-entrega, .btn-submit-orcamento, .btn-footer-orcamento, .btn-material-entrega-bottom {
    background: var(--color-button-gradient);
    color: var(--color-text-light);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.btn-material-entrega:hover, .btn-submit-orcamento:hover, .btn-footer-orcamento:hover, .btn-material-entrega-bottom:hover, .btn-orcamento-principal:hover , 
.btn-diferenciais:hover {
    filter: brightness(1.1);
}

/* --- 1. SEÇÃO PRINCIPAL (dele1.jpg) --- */
.hero-section {
    position: relative;
    color: var(--color-text-light);
    padding-top: 0; 
    background-color: var(--color-dark-brown);
    overflow: hidden;
    background: url('assets/background1.png') center center/cover no-repeat var(--color-dark-brown);
}

/* Efeito de Fundo Desfocado/Escurecido */
.hero-section::before {
    content: ''; 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url('assets/background1.png'),
        repeating-linear-gradient(45deg, rgba(0,0,0,.05) 0px, rgba(0,0,0,.05) 1px, transparent 1px, transparent 2px); 
    background-position: center center, 0 0; 
    background-size: cover, 2px 2px;
    background-repeat: no-repeat, repeat;
    z-index: 1; 
    filter: blur(8px); 
    transform: scale(1.02); 
    background-color: rgba(0, 0, 0, 0.4); 
    background-blend-mode: multiply, overlay;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 100px 20px 150px; 
    text-align: center;
    position: relative;
    z-index: 2;
}

.Logo-component-1 {
    margin-bottom: 30px;
    height: 80px; 
}
.Logo-component-1 img {
    height: 100%;
    width: auto;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.hero-content strong {
    color: var(--color-green-light);
}

.location-info {
    display: flex;
    margin-bottom: 40px;
    font-size: 1.1rem;
    align-items: center;
    justify-content: center;
}

.icon_location img {
    width: 60px;
    height: 60px;
    margin-right: 10px;
    /* vertical-align: middle; */
}

.location-info p {
    font-weight: 400;
    margin: 0;
}

.hero-footer-bg {
    background-color: var(--color-light-bg);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.arrow-down {
    font-size: 2.5rem;
    color: var(--color-green-light);
}

.quality-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--color-green-dark);
    padding: 90px 20px;
    text-align: center;
    color: white;
}

.quality-title {
    font-size: 3.8rem;
    margin-bottom: 10px;
    color: var(--color-text-light);
}

.quality-subtitle {
    font-size: 1.2rem;
    margin-top: 10px;
    margin-bottom: 30px;
}

.quality-badge {
    display: flex;
    background-color: white;
    max-width: max-content;
    align-items: center;
    justify-content: center;
    color: var(--color-green-dark);
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: 600;
    margin: 25px 0;
}

.quality-badge p {
    margin: 0; 
}

.icon_parceria {
    font-size: 35px;
    margin-right: 8px;
    color: var(--color-primary-brown);
}

.quality-info {
    font-size: 1.1rem;
    margin: 25px 0;
    height: 50px;
}

/* Botão */
.quality-btn {
    background-color: var(--color-primary-brown);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 40px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
}

.quality-btn:hover {
    opacity: 0.9;
}



/* --- 2. SEÇÃO PRODUTOS (dele3.jpg) --- */
.products-section {
    /* Fundo da seção: Marrom Escuro (correta) */
    background-color: var(--color-dark-brown); 
    
    /* Centraliza a seção e aplica padding vertical */
    max-width: 100%; /* Ocupa a largura total */
    padding: 50px 20px; /* Padding vertical para o conteúdo */
    
    /* Ajuste para sobrepor a seção Hero, mas agora o container interno dos cards é menor */
    margin: -100px auto 0; /* Continua subindo para sobrepor o Hero */
    text-align: center;
    position: relative;
    z-index: 3;
    /* Remover border-radius para ocupar a largura total do fundo */
}


.products-section h2 {
    color: var(--color-text-light);
    margin-bottom: 50px;
}

.products-grid {
    /* Centraliza a grade dentro da seção de largura total */
    max-width: 1000px; 
    margin: 0 auto 50px auto; /* Centraliza horizontalmente e dá margem inferior */
    
    display: grid;
    /* Layout para 2 colunas no desktop, com ajuste responsivo */
    grid-template-columns: repeat(2, minmax(350px, 1fr)); 
    gap: 30px; /* Espaçamento entre os cards (fiel ao protótipo) */
    justify-content: center; /* Centraliza a grade */
}

.product-card {
    /* Fundo do Card: Cor Clara (conforme protótipo) */
    background-color: var(--color-light-bg); 
    border-radius: 12px; 
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Sombra mais forte */
    text-align: center;
}

.product-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    background-color: #8b7355; 
    border-bottom: 1px solid rgba(0,0,0,0.1);
    border-radius: 12px; 
}

.product-info {
    padding: 15px 20px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-info h3 {
    /* color: var(--color-secondary-green); */
    color: #1D4823;
    font-weight: 600;
}

.product-info p {
    font-size: 0.95rem;
    /* color: var(--color-text-dark); */
    color: #1D4823;
}

.products-section .btn-material-entrega {
    text-align: center;
    margin-top: 30px;
    width: auto; 
    max-width: 100%; 
    
    white-space: normal; 
    word-wrap: break-word; 
    
    padding: 16px 24px;
    height: auto; 
}

/* --- 3. SEÇÃO POR QUE ESCOLHER (dele2.jpg) --- */
.why-choose-section {
    background-color: var(--color-light-bg);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    padding-bottom: 100px; /* Ou ajuste conforme o tamanho final da logo */
}


.why-choose-content-bg {
    display: flex;
    flex-direction: column; /* Garante que os itens (Título, Grade, Botão) fiquem empilhados */
    align-items: center;    /* <--- NOVO/CORRIGIDO: Centraliza os itens horizontalmente (o botão) */
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2; 
}

.why-choose-content-bg h2 {

}

/* 1. BACKGROUND ESMAECIDO/TRANSPARENTE (Usando background_Component_2.png) */
.why-choose-section::before {
    content: '';
    position: absolute;
    top: 52%;
    left: 50%;
    width: 900px; /* Tamanho da imagem do logo grande */
    height: 750px; 
    /* Usando o arquivo que você forneceu */
    background: url('assets/background_Component_2.png') center center/contain no-repeat;
     /* Transparência para o efeito de logo atrás */
    transform: translate(-50%, -50%); /* Centraliza perfeitamente */
    z-index: 1; 
}

.why-choose-section h2 {
   background: linear-gradient(to right, #0C1F0F, #338540);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-top: 20px;
    position: relative; 
    z-index: 2;
}

.arrow-up {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid var(--color-dark-brown); 
    margin: -30px auto 30px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px; 
    max-width: 1000px; 
    width: 100%;
    margin: 40px auto; 
    position: relative; 
    z-index: 2;
    justify-content: center;
}

.benefit-card {
    background: linear-gradient(to right,  #46AE55 0%, #1D4823 100%);
    color: var(--color-text-light);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    min-height: 200px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative; 
    padding-top: 40px; 
    margin-top: 40px;
}

/* 2. POSICIONAMENTO E ESTILO DOS ÍCONES */
.icon-circle {
    position: absolute; 
    top: -50px; 
    left: 50%;
    transform: translateX(-50%);
    
    width: 100px; 
    height: 100px;
    border-radius: 50%;
    background-color: var(--color-primary-brown); /* Fundo Marrom Principal */
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3); 
    
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3; /* Garante que o ícone fique acima do card */
}

.icon-circle img {
    width: 60px; 
    height: auto;
}

.benefit-card h3 {
    margin-top: 15px; 
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.benefit-card p {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.4;
}

.btn-diferenciais {
    margin-top: 40px; 
    margin-bottom: 100px;
}

.reviews-section {
    background-color: #EDEFE0;
    padding: 80px 30px;
    text-align: center;

    position: relative;
    overflow: hidden;
}

.reviews-section h2 {
    color: #B95038; /* ALTERE AQUI */
}


/* Background da Logo sem transparência e menor */
.reviews-section::before {
    content: '';
    position: absolute;
    bottom: -75px; 
    right: -100px; 
    width: 800px; 
    height: 800px; 
    background: url('assets/background_Component_2.png') center center/contain no-repeat;
    transform: rotate(0deg); /* Remover qualquer rotação */
    z-index: 0; /* Abaixo de todo o conteúdo da seção */
}

.reviews-title {
    background: linear-gradient(to right, #532419, #B95038);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.reviews-container {
    display: flex;
    justify-content: center;
    gap: 150px;
    flex-wrap: wrap;
}

.review-card {
    background-color: rgb(255, 255, 255);
    padding: 35px 30px;
    width: 500px;
    height: 320px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.review-card .stars {
    font-size: 2.4rem;
    color: #C27042;
    margin-bottom: 12px;
}

.review-card p {
    font-size: 1.3rem;
    line-height: 1.5;
    color: #1D4823;
}

.reviews-divider {
    margin-top: 50px;
}


/* Seção qualidade-preço (Verde Escuro) */
.quality-price-bg {
    background-color: var(--color-green-dark);
    color: var(--color-text-light); /* Texto Branco */
    text-align: center;
    padding: 50px 20px 50px;
    border-radius: 10px;
    position: relative;
    margin-top: 50px; 
    z-index: 1; 
}

/* Seta de Transição (Arrow Up Green) */
.arrow-up-green {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    /* CORREÇÃO: A seta deve ser da cor do fundo da caixa, que é VERDE ESCURO, não LIGHT_BG */
    border-bottom: 20px solid var(--color-light-bg);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.quality-price-bg h2 {
    color: var(--color-text-light); /* Título Branco */
    font-size: 2.5rem;
    text-transform: uppercase; /* Caixa Alta */
    margin-bottom: 15px;
}

.quality-price-bg p {
    color: #E0E0E0;
    font-size: 1.05rem;
    font-weight: 600; /* Texto mais pesado (fiel ao protótipo) */
    margin-bottom: 25px; /* Mais espaçamento */
}

.quality-price-bg strong {
    color: var(--color-green-light); /* Destaque em Verde Claro */
}

/* Badge de Parceria */
.partnership-badge {
    display: inline-flex;
    align-items: center;
    background-color: var(--color-light-bg);
    padding: 12px 25px;
    border-radius: 5px; /* Bordas arredondadas (menores que o botão) */
    margin-bottom: 30px; /* Mais espaço inferior */
    font-weight: 600;
    font-size: 1.2rem; /* Tamanho maior para o texto do badge */
    color: var(--color-green-dark); /* Texto do badge AGORA É VERDE */
}

.badge-icon {
    width: 35px; /* Ícone MAIOR */
    height: 35px; /* Ícone MAIOR */
    display: flex;
    align-items: center;
    justify-content: center;
    /* REMOVIDO: background-color: var(--color-text-light); para não ter borda */
    background-color: transparent; /* Certifica-se de que não há fundo */
    border-radius: 3px;
    margin-right: 12px; /* Espaço maior entre ícone e texto */
}

.badge-icon i {
    color: var(--color-primary-brown); /* Cor do Ícone continua BRANCA para contraste no fundo marrom */
    font-size: 1.8rem; /* Ícone MAIOR (ajuste se precisar de mais) */
}

.delivery-info {
    font-size: 1rem;
    margin-bottom: 30px;
    font-weight: 400;
}

/* --- 5. SEÇÃO SOLICITE SEU ORÇAMENTO & CONHEÇA (dele5.jpg) --- */
.quote-section {
    max-width: 2100px;
    margin: auto auto;
}

.quote-about-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap; /* NÃO deixa quebrar no desktop */
}

/* Container marrom + imagem */
.about-us-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;

    background-color: var(--color-dark-brown);
    color: var(--color-text-light);

    width: 100%;
}

/* Conteúdo de texto */
.about-us-content {
    flex-basis: 50%;
    padding: 60px 60px 60px 80px; /* aumenta o padding esquerdo */
}

.about-us-title {
    text-align: left;
    color: var(--color-text-light);
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-us-content p {
    margin-bottom: 15px;
    color: var(--color-light-bg);
    font-size: 1.25rem;
}

.about-us-content strong {
    color: var(--color-green-light);
    font-weight: 700;
}

/* Imagem lateral */
/* .about-us-image-side {
    flex-basis: 50%;
    background-image: url('assets/banner_conheca_mourao.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    min-height: 100%;
} */

.about-us-image-side {
    flex-basis: 50%;
    background-image: url('assets/banner_conheca_mourao.png');
    background-size: 60% 100%; /* MAIS LARGA */
    background-position: right center; /* mostra mais o lado direito */
    background-repeat: no-repeat;
    min-height: 100%;
}

.highlight-strong {
    color: #ffffff;
    font-weight: 900;       /* negrito máximo */
    font-size: 1.25rem;     /* aumenta um pouco */
    text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.6);  /* destaque mesmo em imagem */
}


.btn-material-entrega-bottom {
    margin-top: 30px;
    width: auto; 
    max-width: 100%;
    white-space: normal; 
    word-wrap: break-word; 
    
    padding: 10px 15px;
    height: auto; 
}

/* SEÇÃO GERAL */
.orcamento-section {
    display: flex;
    background-color: var(--color-light-bg);
    padding: 60px 0;
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 50px 50px 50px;
    position: relative;
    overflow: hidden;
}

.orcamento-left {
    width: 50%;
}

.orcamento-left div img{
    width: 100px;
    height: 100px;
    margin-bottom: 40px;
}

#btn-want-quote {
    width: max-content;
    padding: 24px 60px 24px 60px;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: none;
}

.orcamento-right {
    width: 50%;
}

.orcamento-title {
     background: linear-gradient(to right, #532419, #B95038);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.8rem;
    
    text-align: left;
    line-height: normal;
    margin-bottom: 10px;
}

.orcamento-text {
    font-size: 1.2rem;
    color: #6E3021;
}


/* .orcamento-logo {
    margin: 0 auto 15px auto;
}



.orcamento-text {
    max-width: 100%;
    font-size: 1.3rem;
} */

/* Marca d'água */
.orcamento-section::after {
   content: '';
    position: absolute;
    top: 52%;
    left: 72%;
    width: 800px; /* Tamanho da imagem do logo grande */
    height: 650px; 
    background: url('assets/background_Component_2.png') center center/contain no-repeat;
     /* Transparência para o efeito de logo atrás */
    transform: translate(-50%, -50%); /* Centraliza perfeitamente */
    z-index: 1; 
    pointer-events: none;
}

.quote-form {
    max-width: 100%;
}


/* Formulário de Orçamento */
.quote-form-container {
    max-width: 600px;
    padding: 20px 40px;
}

/* LOGO */
.logo-orcamento img {
    width: 75px;
    margin-bottom: 20px;
}


/* TÍTULO */
.quote-title {
    color: var(--color-primary-brown);
    font-size: 2.4rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 10px;
}

/* SUBTÍTULO */
.quote-subtitle {
    color: var(--color-text-dark);
    font-size: 1rem;
    margin-bottom: 35px;
}

/* CAMPOS */
.quote-form input,
.quote-form textarea {
    width: 100%;
    padding: 15px 18px;
    margin-bottom: 15px;
    border: none;
    border-radius: 30px;
    background-color: var(--color-primary-brown);
    color: var(--color-text-light);
    font-size: 1rem;
    outline: none;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.quote-form textarea {
    min-height: 110px;
    resize: none;
}

/* BOTÃO */
.btn-submit-orcamento {
    width: 100%;
    padding: 15px 0;
    margin-top: 5px;
    border-radius: 30px;
}


/* --- 6. SEÇÃO FOOTER/CTA --- */
.footer-cta {
    position: relative;
    background-color: var(--color-light-bg);
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
}

/* Marca d'água da logo no canto inferior esquerdo */
.footer-logo-bg {
    position: absolute;
    bottom: -50px;          /* desce um pouco como no protótipo */
    left: -85px;            /* ultrapassa a lateral */
    width: 280px;           /* tamanho igual ao modelo */
    height: 350px;
    opacity: 0.18;          /* transparência exata */
    pointer-events: none;   /* evita clique */
}

.footer-title {
    background: linear-gradient(to right, #532419, #B95038);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem;
    color: var(--color-dark-brown);
    margin-bottom: 10px;
    font-weight: 700;
}

.footer-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 400;
    color: var(--color-dark-brown);
}

.btn-footer-orcamento {
    background-color: var(--color-green-light);
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
}

.btn-footer-orcamento:hover {
    opacity: 0.9;
}


/* --- RESPONSIVIDADE --- */
@media (min-width: 1024px) {
    /* Layout Desktop */
    .quote-about-wrapper {
        flex-direction: row;
    }
    .about-us-container {
        order: 1; /* Esquerda */
        flex: 1;
    }
    .quote-form-container {
        order: 2; /* Direita */
        flex: 1.2; /* Formulário ligeiramente maior */
    }

    
}

@media (max-width: 1250px) {

    .reviews-container {
        gap: 50px;
    }

    .reviews-section::before {
        bottom: -100px; 
        right: 150px; 
    
    }

    .orcamento-section {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 60px 0px;
        max-width: max-content;
        margin: none;
    }

    .orcamento-text, .orcamento-title {
        align-items: center;
        text-align: center;
    }

    .orcamento-section::after {
        left: 50%;
    }
}

@media (max-width: 1150px) {

    .reviews-section::before {
        bottom: 125px; 
        right: 150px; 
    
    }
}

@media (max-width: 768px) {
    /* Layout Mobile */
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    .hero-content {
        padding: 60px 20px 100px;
    }
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 400px; /* Limita a largura do container no mobile */
    }
    .products-section {
        margin-top: -50px;
    }
    .quality-price-bg h2 {
        font-size: 2.2rem;
    }

    .footer-logo-bg {
        width: 180px;
        bottom: -30px;
        left: -20px;
        opacity: 0.12;
    }

    .footer-title {
        font-size: 1.9rem;
    }

    .footer-subtitle {
        font-size: 1.05rem;
    }
    
    /* Invertendo a ordem na seção Orçamento/Sobre para Mobile */
    .quote-about-wrapper {
        flex-direction: column;
    }
    .about-us-container {
        flex-direction: column; /* Empilha texto e imagem verticalmente */
        min-width: 100%;
        order: 1; 
    }

    .about-us-content {
        flex-direction: column;
    }

    .about-us-image-side {
        height: 250px;
    }

    #btn-want-quote {
        font-size: 0.8rem;
        padding: 16px 30px 16px 30px;
        width: 200px;
    }

   /* Formulário de Orçamento (Bloco 2) */
    .quote-form-container {
        background-color: var(--color-light-bg);
        padding: 50px 40px;
        flex: 1; /* Ocupa a parte restante do quote-about-wrapper */
        min-width: 350px;
        order: 2; 
    }

    .quote-form-container {
        order: 2; /* Formulário embaixo */
        min-width: 100%;
    }

    .reviews-container {
        flex-direction: column; /* Pilha os cards no mobile */
        align-items: center; /* Centraliza os cards empilhados */
       
    }
    .review-card {
        width: 90%;
        max-width: 360px;
    }

    .quality-title {
        font-size: 2rem;
    }

    .quality-btn {
        width: 90%;
       
    }
    
}

@media (max-width: 600px) {
    .quality-btn {
        margin-top: 20px;
        padding: 12px 24px;
    }

    .review-card p{
        font-size: 1.2rem;
    }
}