/* ====================================================================
   METEORO BLOCOS - ARQUIVO DE ESTILOS PRINCIPAL
   Desenvolvido para: [Seu Nome/Projeto]
   Versão: 1.0
====================================================================

   ÍNDICE:
   1.  Reset e Variáveis Globais
   2.  Tipografia e Utilitários (.container, .bg-azul)
   3.  Header e Navegação
   4.  Botões Globais
   5.  Página: HOME (Hero, Diferenciais, Carrossel, About Summary)
   6.  Página: PRODUTOS (Filtros, Grid, Banner Calculadora)
   7.  Página: SERVIÇOS (Zig-Zag, Processo, Portfólio)
   8.  Página: SOBRE (História, Missão/Visão, Qualidade, Stats, Vídeo)
   9.  Página: CONTATO (Formulário, Cards, FAQ)
   10. Componentes Globais (Modais, CTA Final)
   11. Footer (Rodapé)
   12. Responsividade (Media Queries)

==================================================================== */

/* -----------------------------------------------------------------
   1. RESET E VARIÁVEIS GLOBAIS
----------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cor-principal: #1C2F38;        /* Azul Escuro Petróleo */
    --cor-principal-escura: #1A2B33;
    --cor-branco: #ffffff;
    --cor-fundo: #ffffff;
    --cor-laranja: #ff914d;          /* Laranja Destaque */
    --cor-preto: #000000;
    --cor-cinza-escuro: #707070;
    --transicao: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--cor-preto);
    line-height: 1.6;
    background-color: var(--cor-fundo);
}

/* -----------------------------------------------------------------
   2. TIPOGRAFIA E UTILITÁRIOS
----------------------------------------------------------------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

.bg-azul {
    background-color: var(--cor-principal);
    width: 100%;
}

.bg-azul a:not(.btn-destaque) {
    color: var(--cor-branco);
    opacity: 0.9;
}

.section-title,
.section-title2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title { color: var(--cor-principal); }
.section-title2 { color: var(--cor-branco); }

/* Linha decorativa abaixo do título */
.section-title::after,
.section-title2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--cor-laranja);
}

.tag-orange {
    color: var(--cor-laranja);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.5rem;
}

/* -----------------------------------------------------------------
   3. HEADER E NAVEGAÇÃO
----------------------------------------------------------------- */
header {
    background-color: var(--cor-principal);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    width: 160px;
    height: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

/* Efeito da Barrinha no Menu */
nav a {
    color: var(--cor-branco);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transicao);
    position: relative;
    padding-bottom: 5px;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--cor-laranja);
    transition: width 0.3s ease-in-out;
}

nav a:hover::after,
nav a.active_nav::after {
    width: 100%;
}

nav a.active_nav {
    opacity: 1;
    font-weight: 700;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--cor-branco);
    margin: 3px 0;
    transition: var(--transicao);
}

/* -----------------------------------------------------------------
   4. BOTÕES GLOBAIS
----------------------------------------------------------------- */
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--cor-laranja);
    color: var(--cor-branco);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: var(--transicao);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--cor-branco);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--cor-branco);
}

/* -----------------------------------------------------------------
   5. PÁGINA: HOME
----------------------------------------------------------------- */
/* Hero Section */
.home-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1)), url('../img/img_fundoAzulado1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--cor-branco);
    padding: 8rem 1rem;
    text-align: center;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.home-hero h1 { font-size: 3.5rem; margin-bottom: 1rem; line-height: 1.2; }
.home-hero p { font-size: 1.5rem; margin-bottom: 1rem; opacity: 0.95; }

/* Diferenciais */
.home-diferenciais { padding: 4rem 0; }
.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.diferencial-card {
    background-color: var(--cor-branco);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: var(--transicao);
}

.diferencial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(28, 47, 56, 0.5);
}

.diferencial-icon {
    width: 80px; height: 80px;
    background-color: var(--cor-laranja);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
}

.diferencial-icon img { width: 50%; height: auto; object-fit: contain; }
.diferencial-card h3 { color: var(--cor-principal); margin-bottom: 1rem; font-size: 1.3rem; }
.diferencial-card p { color: var(--cor-cinza-escuro); line-height: 1.6; }

/* Carrossel Principal */
.home-carousel-section {
    position: relative; width: 100%; margin-top: 4rem; overflow: hidden;
}
.carousel-container { position: relative; height: 600px; background-color: #000; overflow: hidden; }

.slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0; visibility: hidden; z-index: 1;
    transition: opacity 1s ease-in-out, visibility 0.5s;
}
.slide.active { opacity: 1; visibility: visible; z-index: 2; }

.slide-bg {
    width: 100%; height: 100%; background-size: cover; background-position: center;
    position: absolute; top: 0; left: 0; z-index: 1;
}
.slide-bg::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
}

.slide-content {
    position: relative; z-index: 2; height: 100%;
    display: flex; flex-direction: column; justify-content: center;
    color: var(--cor-branco); padding-left: 150px;
}
.slide-content h2 { font-size: 4rem; max-width: 700px; margin-bottom: 1rem; line-height: 1.1; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.slide-content p { font-size: 2rem; margin-bottom: 2rem; font-weight: 300; }

.btn-slider {
    padding: 12px 30px; background-color: var(--cor-branco); color: var(--cor-principal);
    text-decoration: none; font-weight: bold; border-radius: 5px; width: fit-content; transition: 0.3s;
}
.btn-slider:hover { background-color: var(--cor-principal); color: var(--cor-branco); }

.prev, .next {
    cursor: pointer; position: absolute; top: 50%; width: auto; padding: 16px; margin-top: -22px;
    color: white; font-weight: bold; font-size: 24px; transition: 0.6s ease;
    border-radius: 0 3px 3px 0; user-select: none; z-index: 3;
}
.next { right: 0; border-radius: 3px 0 0 3px; }
.prev:hover, .next:hover { background-color: rgba(255, 255, 255, 0.2); }

.indicadores { position: absolute; bottom: 20px; width: 100%; text-align: center; z-index: 3; }
.barrinha {
    cursor: pointer; height: 4px; width: 6%; margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5); display: inline-block; transition: background-color 0.6s ease;
}
.active, .barrinha:hover { background-color: #ffffff; }

/* Home: About Summary (Colagem) */
.home-about-summary { padding: 6rem 0; background-color: var(--cor-fundo); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.about-collage { display: flex; gap: 15px; height: 500px; }
.collage-col { flex: 1; display: flex; flex-direction: column; gap: 15px; }
.collage-col img {
    width: 100%; border-radius: 8px; object-fit: cover; box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.collage-col img:hover { transform: scale(1.02); }
.img-tall { height: 100%; }
.img-small { height: 50%; }
.collage-col.stack { margin-top: 30px; }

.about-text-content h2 { font-size: 2.5rem; line-height: 1.2; color: var(--cor-principal); margin-bottom: 1.5rem; }
.about-text-content p { color: var(--cor-cinza-escuro); margin-bottom: 2rem; font-size: 1.1rem; }

.about-check-list { list-style: none; margin-bottom: 2.5rem; }
.about-check-list li { display: flex; align-items: center; gap: 15px; margin-bottom: 1rem; font-weight: 500; color: var(--cor-principal); }
.about-check-list i { color: var(--cor-laranja); font-size: 1.2rem; }

.btn-outline-dark {
    display: inline-flex; align-items: center; gap: 10px; padding: 12px 30px;
    border: 2px solid var(--cor-principal); color: var(--cor-principal); text-decoration: none; font-weight: bold; border-radius: 5px; transition: all 0.3s ease;
}
.btn-outline-dark:hover { background-color: var(--cor-principal); color: var(--cor-branco); transform: translateX(5px); }

/* Home: Destaque Serviços (Style Layers) */
.home-services-highlight { padding: 6rem 0; background-color: var(--cor-fundo); overflow: hidden; }
.services-highlight-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.services-txt-col h2 { font-size: 2.8rem; line-height: 1.2; color: var(--cor-principal); margin-bottom: 1.5rem; }
.services-txt-col p { color: var(--cor-cinza-escuro); font-size: 1.1rem; margin-bottom: 2.5rem; line-height: 1.6; }

.btn-arrow-style {
    display: inline-flex; align-items: stretch; text-decoration: none; box-shadow: 0 5px 15px rgba(0,0,0,0.1); transition: transform 0.3s ease;
}
.btn-arrow-style:hover { transform: translateY(-3px); }

.btn-icon {
    background-color: var(--cor-laranja); color: #fff; padding: 15px 20px;
    display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
    border-top-left-radius: 5px; border-bottom-left-radius: 5px; transition: 0.3s;
}
.btn-text {
    background-color: #f4f4f4; color: var(--cor-principal); padding: 15px 25px;
    display: flex; align-items: center; font-weight: bold; letter-spacing: 1px; font-size: 0.9rem;
    border-top-right-radius: 5px; border-bottom-right-radius: 5px; transition: 0.3s;
}
.btn-arrow-style:hover .btn-icon { background-color: var(--cor-principal); }
.btn-arrow-style:hover .btn-text { background-color: #e0e0e0; }

.services-img-col { position: relative; padding-top: 30px; padding-left: 30px; }
.services-img-col img { position: relative; z-index: 2; width: 100%; border-radius: 5px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); display: block; }
.shape-bg { position: absolute; top: 0; left: 0; width: 95%; height: 95%; background-color: var(--cor-laranja); z-index: 1; border-radius: 5px; }

/* -----------------------------------------------------------------
   6. PÁGINA: PRODUTOS
----------------------------------------------------------------- */
.page-header-produtos {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1)), url('../img/img_fundoAzulado1.png');
    background-size: cover; background-position: center; background-repeat: no-repeat;
    color: var(--cor-branco); padding: 8rem 1rem; text-align: center;
    min-height: 60vh; display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.page-header-produtos h1 { font-size: 3.5rem; margin-bottom: 1rem; }
.page-header-produtos p { font-size: 1.5rem; margin-bottom: 1rem; opacity: 0.95; }

/* Filtros */
.section-produtos { padding: 4rem 1rem; }
.produtos-filter { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 3rem; flex-wrap: wrap; }
.filter-btn {
    padding: 0.8rem 1.5rem; border: 2px solid var(--cor-principal); background: transparent; color: var(--cor-principal);
    border-radius: 30px; cursor: pointer; font-weight: bold; transition: 0.3s;
}
.filter-btn:hover, .filter-btn.active { background-color: var(--cor-principal); color: var(--cor-branco); }

/* Grid de Produtos */
.produtos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-bottom: 4rem; }
.produto-card {
    background: var(--cor-branco); border: 1px solid #eee; border-radius: 10px; overflow: hidden;
    display: flex; flex-direction: column; transition: var(--transicao); box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.produto-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.15); }

.produto-img { height: 250px; overflow: hidden; position: relative; }
.produto-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.produto-card:hover .produto-img img { transform: scale(1.1); }

.tag-produto {
    position: absolute; top: 15px; left: 15px; background-color: var(--cor-laranja); color: #fff;
    padding: 5px 10px; font-size: 0.75rem; font-weight: bold; border-radius: 4px; text-transform: uppercase;
}

.produto-info { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.produto-info h3 { color: var(--cor-principal); font-size: 1.3rem; margin-bottom: 0.5rem; }
.produto-desc { font-size: 0.9rem; color: var(--cor-cinza-escuro); margin-bottom: 1rem; line-height: 1.5; }

.produto-specs { list-style: none; margin-bottom: 1.5rem; display: flex; flex-wrap: wrap; gap: 10px; }
.produto-specs li { font-size: 0.85rem; color: #555; background: #f5f5f5; padding: 5px 10px; border-radius: 4px; display: flex; align-items: center; gap: 5px; }
.produto-specs i { color: var(--cor-laranja); }

.produto-actions { margin-top: auto; display: flex; gap: 10px; }
.btn-orcamento {
    flex: 1; text-align: center; padding: 10px; background-color: var(--cor-principal); color: #fff;
    text-decoration: none; border-radius: 5px; font-weight: bold; transition: 0.3s; font-size: 0.9rem;
}
.btn-orcamento:hover { background-color: var(--cor-laranja); }

.btn-zap {
    width: 45px; display: flex; align-items: center; justify-content: center;
    background-color: #25D366; color: #fff; border-radius: 5px; font-size: 1.2rem; transition: 0.3s; text-decoration: none;
}
.btn-zap:hover { background-color: #128C7E; }

/* Paginação */
.paginacao { display: flex; justify-content: center; gap: 10px; margin-top: 2rem; }
.page-link {
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    border: 1px solid #ddd; color: var(--cor-principal); text-decoration: none; border-radius: 5px; transition: 0.3s; font-weight: bold;
}
.page-link:hover, .page-link.active { background-color: var(--cor-principal); color: #fff; border-color: var(--cor-principal); }

/* Banner Calculadora */
.banner-calculadora { background-color: #ffffff; padding: 4rem 1rem; border-top: 4px solid var(--cor-laranja); }
.calc-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 2rem; }
.calc-text h2 { color: var(--cor-principal); margin-bottom: 0.5rem; font-size: 2rem; }
.calc-text i { margin-right: 10px; color: var(--cor-laranja); }
.btn-calc {
    background-color: var(--cor-principal); color: #fff; padding: 1rem 2rem; text-decoration: none;
    font-weight: bold; border-radius: 50px; transition: 0.3s; box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.btn-calc:hover { transform: scale(1.05); background-color: var(--cor-laranja); }

/* -----------------------------------------------------------------
   7. PÁGINA: SERVIÇOS
----------------------------------------------------------------- */
.page-header-servicos {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1)), url('../img/img_fundoAzulado1.png');
    background-size: cover; background-position: center; background-repeat: no-repeat;
    color: var(--cor-branco); padding: 8rem 1rem; text-align: center;
    min-height: 60vh; display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.page-header-servicos h1 { font-size: 3.5rem; margin-bottom: 1rem; }
.page-header-servicos p { font-size: 1.5rem; margin-bottom: 1rem; opacity: 0.95; }

.section-header-center { text-align: center; margin-bottom: 3rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.section-header-center p { color: var(--cor-cinza-escuro); font-size: 1.1rem; }

/* Serviços Zig-Zag */
.section-servicos-zigzag { padding: 6rem 0; background-color: var(--cor-fundo); overflow: hidden; }
.service-row { display: flex; align-items: center; gap: 4rem; margin-bottom: 6rem; }
.service-row.reverse { flex-direction: row-reverse; }

.service-image { flex: 1; position: relative; }
.service-image img {
    width: 100%; border-radius: 15px; position: relative; z-index: 2;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15); transition: transform 0.3s ease;
}
.service-row:hover .service-image img { transform: scale(1.02); }

.img-shape {
    position: absolute; top: -20px; left: -20px; width: 100%; height: 100%;
    background-color: var(--cor-laranja); border-radius: 15px; z-index: 1;
}
.img-shape.shape-blue { background-color: var(--cor-principal); top: auto; bottom: -20px; left: auto; right: -20px; }

.service-text { flex: 1; position: relative; }
.service-number {
    position: absolute; top: -60px; left: 0; font-size: 8rem; font-weight: 900;
    color: rgba(0,0,0,0.03); line-height: 1; z-index: 0; pointer-events: none;
}
.service-text h3 { font-size: 2.2rem; color: var(--cor-principal); margin-bottom: 1rem; position: relative; z-index: 1; }
.service-text p { font-size: 1.1rem; color: var(--cor-cinza-escuro); line-height: 1.7; margin-bottom: 1.5rem; position: relative; z-index: 1; }

.service-list { list-style: none; margin-bottom: 2rem; position: relative; z-index: 1; }
.service-list li { margin-bottom: 0.8rem; display: flex; align-items: center; gap: 10px; color: var(--cor-principal); font-weight: 500; }
.service-list i { color: var(--cor-laranja); font-size: 1.2rem; }

.btn-service-link {
    background: none; border: none; color: var(--cor-laranja); font-weight: bold; font-size: 1.1rem;
    cursor: pointer; display: inline-flex; align-items: center; gap: 10px; padding: 0;
    transition: 0.3s; text-transform: uppercase; letter-spacing: 1px;
}
.btn-service-link:hover { color: var(--cor-principal); gap: 15px; }

/* Processo (Passo a Passo) */
.processo-section { padding: 5rem 0; color: #fff; text-align: center; }
.processo-grid { display: flex; justify-content: center; align-items: flex-start; gap: 2rem; margin-top: 3rem; flex-wrap: wrap; }
.processo-item { flex: 1; min-width: 250px; max-width: 300px; }
.processo-icon {
    width: 70px; height: 70px; margin: 0 auto 1.5rem;
    background-color: rgba(255, 255, 255, 0.1); border: 2px solid var(--cor-laranja); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; font-weight: bold; color: var(--cor-laranja);
}
.processo-item h4 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.processo-item p { opacity: 0.8; font-size: 0.95rem; }
.processo-seta { padding-top: 20px; font-size: 1.5rem; color: var(--cor-laranja); opacity: 0.5; }

/* Obras (Portfólio) */
.section-obras { padding: 5rem 1rem; }
.obras-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem; }
.obra-card {
    background: #fff; border-radius: 10px; overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); border: 1px solid #eee; transition: 0.3s;
}
.obra-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.15); }

.obra-img { position: relative; height: 220px; overflow: hidden; }
.obra-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.obra-card:hover .obra-img img { transform: scale(1.1); }

.obra-tag {
    position: absolute; top: 15px; right: 15px; background-color: var(--cor-principal); color: #fff;
    padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; text-transform: uppercase;
}
.obra-info { padding: 1.5rem; }
.obra-info h3 { color: var(--cor-principal); font-size: 1.3rem; margin-bottom: 0.5rem; }
.obra-info p { color: var(--cor-cinza-escuro); font-size: 0.9rem; margin-bottom: 0.5rem; }
.obra-info i { color: var(--cor-laranja); margin-right: 5px; }
.obra-desc { margin-top: 1rem; line-height: 1.5; border-top: 1px solid #eee; padding-top: 1rem; }

/* CTA Serviços */
.cta-servicos {
    background: linear-gradient(to right, rgba(28, 47, 56, 0.2) 0%, rgba(28, 47, 56, 0.8) 50%, rgba(28, 47, 56, 1) 100%), url('../img/img_carrossel2.png');
    background-size: cover; background-position: center; padding: 6rem 0;
    color: var(--cor-branco); display: flex; align-items: flex-end;
}
.cta-wrapper-servicos { max-width: 600px; text-align: right; margin-left: auto; margin-right: 0; padding-right: 1rem; }
.cta-wrapper-servicos h2 { font-size: 3rem; font-weight: bold; margin-bottom: 1rem; line-height: 1.1; }
.cta-wrapper-servicos p { font-size: 1.1rem; margin-bottom: 2rem; opacity: 0.9; line-height: 1.6; }

/* -----------------------------------------------------------------
   8. PÁGINA: SOBRE
----------------------------------------------------------------- */
.sobre-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1)), url('../img/img_fundoAzulado1.png');
    background-size: cover; background-position: center; background-repeat: no-repeat;
    color: var(--cor-branco); padding: 8rem 1rem; text-align: center;
    min-height: 60vh; display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.sobre-hero-content { max-width: 1000px; margin: 0 auto; }
.sobre-hero h1 { font-size: 3.5rem; margin-bottom: 1rem; }
.sobre-hero p { font-size: 1.5rem; margin-bottom: 1rem; opacity: 0.95; }

.sobre-section { padding: 3rem 0; }
.sobre-historia-content { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; align-items: center; justify-content: center; padding: 1rem 0; }
.sobre-historia-text { max-width: 500px; margin: 0 auto; }
.sobre-historia-text h2 { color: var(--cor-principal); margin-bottom: 1.5rem; font-size: 2rem; position: relative; }
.sobre-historia-text h2::after { content: ''; display: block; width: 60px; height: 4px; background: var(--cor-laranja); margin-top: 10px; }
.sobre-historia-text p { color: var(--cor-preto); font-size: 1.1rem; margin-bottom: 0.5rem; line-height: 1.8; text-align: justify; }

.sobre-historia-image {
    background-image: url('../img/img_carrossel2.png'); background-size: cover; background-position: center;
    border-radius: 5px; width: 100%; max-width: 450px; height: 450px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); margin: 0 auto;
}

/* Essência (Accordion) */
.essencia-moderna { background-color: var(--cor-fundo); padding: 6rem 0; }
.essencia-grid { display: grid; grid-template-columns: 1.2fr 1fr 1.2fr; gap: 3rem; align-items: center; }
.essencia-info h2 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 1.5rem; color: var(--cor-principal); }
.essencia-info p { color: var(--cor-cinza-escuro); font-size: 1.1rem; margin-bottom: 2rem; line-height: 1.6; }

.btn-essencia {
    display: inline-block; padding: 1rem 2.5rem; background-color: var(--cor-laranja); color: var(--cor-branco);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); text-decoration: none; border-radius: 5px; font-weight: bold; font-size: 1.1rem; transition: var(--transicao);
}
.btn-essencia:hover {
    background-color: transparent; color: var(--cor-principal); transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5); border: 1px solid var(--cor-principal);
}

.essencia-image .img-frame {
    width: 100%; height: 450px; background-size: cover; background-position: center;
    border-radius: 5px; box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.essencia-accordion { display: flex; flex-direction: column; gap: 1.5rem; }
.accordion-item {
    background-color: var(--cor-branco); color: var(--cor-principal); border: 1px solid #e0e0e0;
    border-radius: 15px; padding: 1.5rem; cursor: pointer; transition: all 0.3s ease; overflow: hidden;
}
.accordion-item.active {
    background-color: var(--cor-principal); color: var(--cor-branco); border-color: transparent;
    box-shadow: 0 10px 20px rgba(28,47,56,0.5); transform: scale(1.02);
}
.accordion-header { display: flex; justify-content: space-between; align-items: center; }
.accordion-header h3 { font-size: 1.2rem; font-weight: bold; margin: 0; }
.accordion-body { max-height: 0; opacity: 0; overflow: hidden; transition: all 0.5s ease; }
.accordion-item.active .accordion-body { max-height: 200px; opacity: 1; margin-top: 1rem; }

.icon-circle {
    width: 35px; height: 35px; background-color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: var(--cor-principal);
    transition: 0.3s; box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.accordion-item.active .icon-circle { color: var(--cor-principal); }

/* Qualidade */
.sobre-qualidade-section { width: 100%; background-color: var(--cor-branco); padding: 0; }
.qualidade-container { display: flex; flex-wrap: wrap; min-height: 600px; }
.qualidade-image-wrapper { flex: 1; position: relative; min-width: 300px; }
.qualidade-image-wrapper img { width: 100%; height: 100%; object-fit: cover; display: block; }

.qualidade-content {
    flex: 1; background-color: var(--cor-principal); color: var(--cor-branco);
    padding: 5rem 4rem; display: flex; flex-direction: column; justify-content: center;
}
.qualidade-tag {
    color: var(--cor-laranja); font-weight: bold; text-transform: uppercase; letter-spacing: 2px;
    font-size: 0.9rem; margin-bottom: 1rem; display: block; position: relative; padding-left: 15px;
}
.qualidade-tag::before {
    content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 8px; height: 8px; background-color: var(--cor-laranja);
}
.qualidade-content h2 { font-size: 2.5rem; margin-bottom: 1.5rem; line-height: 1.2; }
.qualidade-description { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 3rem; line-height: 1.6; max-width: 600px; }

.qualidade-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
.q-feature-item { display: flex; align-items: flex-start; gap: 1rem; }
.q-icon { font-size: 2rem; color: var(--cor-laranja); margin-top: -5px; }
.q-text h4 { font-size: 1.1rem; margin-bottom: 0.3rem; font-weight: bold; }
.q-text p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.4; }

.btn-destaque {
    display: inline-flex; align-items: center; gap: 10px; padding: 1rem 2.5rem;
    background-color: var(--cor-laranja); color: #fff; text-decoration: none; font-weight: bold;
    border-radius: 5px; width: fit-content; transition: var(--transicao); text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px;
}
.btn-destaque:hover { background-color: #fff; color: var(--cor-principal); transform: translateX(5px); }

/* Princípios Modernos */
.principios-modern-section { padding: 6rem 0; background-color: var(--cor-fundo); }
.principios-header { text-align: left; margin-bottom: 3rem; padding-left: 1.5rem; }
.principios-header h2 { font-size: 2.5rem; color: var(--cor-principal); }

.principios-row {
    display: grid; grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--cor-principal); border-bottom: 1px solid var(--cor-principal);
}
.p-card-modern {
    background-color: #fff; padding: 3rem 1.5rem;
    border-right: 1px solid var(--cor-principal); display: flex; flex-direction: column; transition: 0.3s;
}
.p-card-modern:last-child { border-right: none; }

.p-icon-circle {
    width: 60px; height: 60px; background-color: #f4f6f8; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--cor-principal); margin-bottom: 1.5rem; transition: 0.3s;
}
.p-card-modern h3 { font-size: 1.4rem; color: var(--cor-principal); margin-bottom: 1rem; line-height: 1.3; font-weight: 700; }
.p-card-modern p { font-size: 1rem; color: var(--cor-cinza-escuro); line-height: 1.6; margin-bottom: 2rem; flex-grow: 1; }

.p-card-modern.highlight {
    background-color: var(--cor-laranja); border-right: none; transform: scaleY(1.05);
    box-shadow: 0 10px 30px rgba(255, 145, 77, 0.3); z-index: 1; border-radius: 4px;
}
.p-card-modern.highlight h3, .p-card-modern.highlight p { color: #fff; }
.p-card-modern.highlight .p-icon-circle { background-color: #fff; color: var(--cor-laranja); }
.p-card-modern:not(.highlight):hover { background-color: #fafafa; }
.p-card-modern:not(.highlight):hover .p-icon-circle { background-color: var(--cor-principal); color: #fff; transform: rotateY(180deg); }

/* Stats */
.sobre-stats-section { background: var(--cor-principal); padding: 5rem 0; width: 80%; margin: 4rem auto 0 auto; }
.sobre-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; color: var(--cor-branco); }
.sobre-stat-item h3 { font-size: 3.5rem; font-weight: bold; margin-bottom: 0.5rem; color: #fff; }
.sobre-stat-item p { font-size: 1.1rem; opacity: 0.8; text-transform: uppercase; letter-spacing: 1px; }

/* Carrossel Infinito */
.infinite-gallery-section { background-color: var(--cor-fundo); padding: 3rem 0; overflow: hidden; width: 100%; }
.slider-container { width: 100%; margin: 0 auto; position: relative; }
.slider-track { display: flex; gap: 20px; width: max-content; animation: scroll-infinite 20s linear infinite; }
.slide-card { width: 350px; height: 250px; border-radius: 10px; overflow: hidden; position: relative; box-shadow: 0 4px 10px rgba(0,0,0,0.1); flex-shrink: 0; }
.slide-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.slide-card:hover img { transform: scale(1.1); }
.slider-track:hover { animation-play-state: paused; }
@keyframes scroll-infinite { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Vídeo Box */
.video-box {
    position: relative; width: 100%; height: 550px; background-size: cover; background-position: top center;
    border-radius: 10px; overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,0.2); display: flex; align-items: center; justify-content: center;
}
.video-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(28, 47, 56, 0.4), rgba(28, 47, 56, 0.9)); z-index: 1; transition: 0.3s;
}
.video-play-center { position: absolute; z-index: 3; top: 50%; left: 50%; transform: translate(-50%, -50%); text-decoration: none; }
.play-pulse {
    width: 90px; height: 90px; background-color: var(--cor-branco); color: var(--cor-principal); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 2.5rem; padding-left: 8px;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); animation: pulse-white 2s infinite; transition: 0.3s;
}
.video-play-center:hover .play-pulse { transform: scale(1.1); background-color: var(--cor-principal); color: var(--cor-branco); }
@keyframes pulse-white {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 20px rgba(255, 255, 255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
.video-text-box {
    position: absolute; bottom: 40px; left: 0; width: 100%; text-align: center; z-index: 2; padding: 0 20px; color: var(--cor-branco);
}
.video-text-box h2 { font-size: 2.2rem; margin-bottom: 0.5rem; text-shadow: 2px 2px 4px rgba(0,0,0,0.6); }
.video-text-box p { font-size: 1.1rem; opacity: 0.9; max-width: 700px; margin: 0 auto; }

/* -----------------------------------------------------------------
   9. PÁGINA: CONTATO
----------------------------------------------------------------- */
.page-header-contato {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1)), url('../img/img_fundoAzulado1.png');
    background-size: cover; background-position: center; background-repeat: no-repeat;
    color: var(--cor-branco); padding: 8rem 1rem; text-align: center;
    min-height: 60vh; display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.page-header-contato h1 { font-size: 3.5rem; margin-bottom: 1rem; }
.page-header-contato p { font-size: 1.5rem; opacity: 0.9; }

.contact-split-section { background-color: var(--cor-fundo); padding: 5rem 0; }
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem; align-items: start; }

.form-wrapper { background: #fff; padding: 3rem; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.form-header { margin-bottom: 2rem; }
.form-header h2 { color: var(--cor-principal); font-size: 2rem; margin-bottom: 0.5rem; }
.form-header p { color: var(--cor-cinza-escuro); }

.meteoro-form { display: flex; flex-direction: column; gap: 1.5rem; }
.input-group label { display: block; margin-bottom: 0.5rem; font-weight: bold; color: var(--cor-principal); }
.input-group input, .input-group select, .input-group textarea {
    width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 8px;
    font-size: 1rem; background-color: #f8f8f8; transition: 0.3s; font-family: inherit;
}
.input-group input:focus, .input-group select:focus, .input-group textarea:focus {
    outline: none; border-color: var(--cor-laranja); background-color: #fff; box-shadow: 0 0 0 3px rgba(255, 145, 77, 0.1);
}

.btn-submit {
    background-color: var(--cor-principal); color: #fff; padding: 15px; border: none; border-radius: 8px;
    font-size: 1.1rem; font-weight: bold; cursor: pointer; transition: 0.3s; margin-top: 1rem;
}
.btn-submit:hover { background-color: var(--cor-laranja); transform: translateY(-2px); }

.info-wrapper { position: relative; padding: 2rem 0; }
.info-cards-stack { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card {
    background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); padding: 1.5rem;
    border-radius: 10px; display: flex; gap: 1.5rem; box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 5px solid var(--cor-principal); transition: 0.3s;
}
.contact-card:hover { transform: translateX(10px); }

.icon-box {
    width: 50px; height: 50px; background-color: #eee; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: var(--cor-principal); font-size: 1.2rem; flex-shrink: 0;
}
.card-content h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--cor-principal); }
.card-content p { font-size: 0.95rem; color: #555; margin-bottom: 0.3rem; }
.link-small { font-size: 0.85rem; color: var(--cor-laranja); text-decoration: none; font-weight: bold; display: block; margin-top: 5px; }

/* FAQ */
.faq-section { padding: 5rem 0; background-color: var(--cor-fundo); }
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { border: 1px solid #eee; border-radius: 8px; overflow: hidden; cursor: pointer; transition: 0.3s; }
.faq-question { background-color: #f9f9f9; padding: 1.2rem; display: flex; justify-content: space-between; align-items: center; }
.faq-question h4 { margin: 0; font-size: 1.1rem; color: var(--cor-principal); }
.faq-question i { transition: 0.3s; }
.faq-answer { padding: 0 1.2rem; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; background-color: #fff; color: #666; }
.faq-item.active .faq-question { background-color: var(--cor-principal); color: #fff; }
.faq-item.active .faq-question h4 { color: #fff; }
.faq-item.active i { transform: rotate(180deg); color: #fff; }
.faq-item.active .faq-answer { max-height: 150px; padding: 1.2rem; }

/* -----------------------------------------------------------------
   10. COMPONENTES GLOBAIS
----------------------------------------------------------------- */
/* CTA Final Imagem */
.cta-image-banner {
    background: linear-gradient(to right, rgba(28, 47, 56, 1) 0%, rgba(28, 47, 56, 0.8) 50%, rgba(28, 47, 56, 0.2) 100%), url('../img/img_carrossel1.jpg');
    background-size: cover; background-position: center; padding: 6rem 0; color: var(--cor-branco); display: flex; align-items: center;
}
.cta-wrapper { max-width: 600px; text-align: left; }
.cta-wrapper h2 { font-size: 3rem; font-weight: bold; margin-bottom: 1rem; line-height: 1.1; }
.cta-wrapper p { font-size: 1.1rem; margin-bottom: 2rem; opacity: 0.9; line-height: 1.6; }

.btn-cta-orange {
    display: inline-flex; align-items: center; gap: 10px; background-color: var(--cor-laranja); color: #fff;
    padding: 1rem 2.5rem; font-weight: bold; text-decoration: none; border-radius: 5px; font-size: 1.1rem;
    transition: var(--transicao); box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.btn-cta-orange:hover { background-color: #fff; color: var(--cor-principal); transform: translateY(-3px); }

/* Modais (Pop-ups) */
.modal-overlay {
    display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%;
    overflow: auto; background-color: rgba(0, 0, 0, 0.8); backdrop-filter: blur(5px);
    align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease;
}
.modal-overlay.show { display: flex; opacity: 1; }
.modal-content {
    background-color: #fff; margin: auto; padding: 0; border-radius: 15px; width: 90%; max-width: 600px;
    position: relative; box-shadow: 0 25px 50px rgba(0,0,0,0.5); transform: translateY(-50px); transition: transform 0.3s ease; overflow: hidden;
}
.modal-overlay.show .modal-content { transform: translateY(0); }
.close-modal {
    color: #aaa; float: right; font-size: 28px; font-weight: bold; position: absolute; right: 20px; top: 10px; cursor: pointer; z-index: 2; transition: 0.3s;
}
.close-modal:hover { color: var(--cor-laranja); }
.modal-header { background-color: var(--cor-principal); color: #fff; padding: 20px; display: flex; align-items: center; gap: 15px; }
.modal-header i { font-size: 1.5rem; color: var(--cor-laranja); }
.modal-body { padding: 30px; color: var(--cor-cinza-escuro); }
.modal-body ul { margin: 20px 0; padding-left: 20px; }
.modal-body li { margin-bottom: 10px; }
.modal-body img { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; margin-top: 15px; }

/* -----------------------------------------------------------------
   11. RODAPÉ (FOOTER)
----------------------------------------------------------------- */
footer {
    background-color: var(--cor-principal); color: var(--cor-branco); padding: 3rem 0 1.5rem;
    margin-top: 4rem; font-size: 0.9rem;
}
.footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2rem; }
.footer-section { flex: 1; min-width: 200px; }
.brand-section { flex: 1.2; }
.brand-section img { width: 200px; margin-bottom: 1rem; }
.brand-text { font-size: 0.85rem; line-height: 1.5; opacity: 0.8; max-width: 250px; }

.footer-section h3 { font-size: 1.1rem; margin-bottom: 1.2rem; color: var(--cor-branco); font-weight: bold; white-space: nowrap; }
.contact-item, .footer-section p:not(.brand-text) { color: rgba(255, 255, 255, 0.8); margin-bottom: 0.6rem; display: flex; align-items: center; }
.contact-item i { width: 25px; color: #fff; font-size: 1rem; }

.links-section ul { list-style: none; }
.links-section a { color: rgba(255, 255, 255, 0.8); text-decoration: none; display: block; margin-bottom: 0.6rem; transition: 0.3s; }
.links-section a:hover { color: #fff; padding-left: 5px; }

.social-icons { margin-top: 1.5rem; display: flex; gap: 15px; }
.social-icons a { color: #fff; font-size: 1.5rem; transition: 0.3s; }
.social-icons a:hover { opacity: 0.8; transform: translateY(-3px); }

.footer-bottom {
    text-align: center; padding-top: 2rem; margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.6); font-size: 0.85rem;
}

/* -----------------------------------------------------------------
   12. RESPONSIVIDADE (MEDIA QUERIES)
----------------------------------------------------------------- */

/* Desktop Médio / Tablet Horizontal */
@media (max-width: 1024px) {
    .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
    .essencia-grid { grid-template-columns: 1fr; text-align: center; }
    .essencia-image { display: none; }
    .accordion-header, .accordion-body { text-align: left; }
    .qualidade-content { padding: 3rem 2rem; }
    .qualidade-features-grid { grid-template-columns: 1fr; }
    .principios-row { grid-template-columns: 1fr 1fr; }
    .p-card-modern:nth-child(2) { border-right: none; }
    .p-card-modern { border-bottom: 1px solid var(--cor-principal); }
}

/* Tablet Vertical */
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; text-align: center; }
    .about-collage { height: 400px; margin-bottom: 2rem; }
    .collage-col.stack { margin-top: 0; }
    .about-check-list li { justify-content: center; text-align: left; }
    
    .services-highlight-grid { grid-template-columns: 1fr; text-align: left; }
    .services-img-col { margin-top: 2rem; padding-top: 20px; padding-left: 20px; max-width: 500px; margin-left: auto; margin-right: auto; }
    
    .service-row, .service-row.reverse { flex-direction: column; gap: 3rem; margin-bottom: 4rem; text-align: center; }
    .service-image { width: 100%; max-width: 500px; }
    .service-number { left: 50%; transform: translateX(-50%); top: -40px; font-size: 6rem; }
    .service-list { display: inline-block; text-align: left; }
    
    .contact-grid { grid-template-columns: 1fr; }
    .form-wrapper { padding: 2rem; }
    
    .footer-content { display: grid; grid-template-columns: 1fr 1fr; }
    .sobre-historia-content { grid-template-columns: 1fr; }
    .sobre-historia-image { height: 300px; order: -1; }
    .sobre-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile Grande */
@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    nav {
        position: absolute; top: 100%; left: 0; right: 0; background-color: var(--cor-branco);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1); max-height: 0; overflow: hidden; transition: var(--transicao);
    }
    nav.active { max-height: 400px; }
    nav ul { flex-direction: column; padding: 1rem 2rem; gap: 0; }
    nav ul li { padding: 1rem 0; border-bottom: 1px solid var(--cor-cinza-escuro); }
    nav ul li:last-child { border-bottom: none; }
    nav a { color: var(--cor-principal); }

    .home-hero h1, .sobre-hero h1, .page-header-produtos h1, .page-header-servicos h1, .page-header-contato h1 { font-size: 2.5rem; }
    .carousel-container { height: 450px; }
    .slide-content h2 { font-size: 2.5rem; }
    .slide-content { padding-left: 20px; align-items: center; text-align: center; }
    .prev, .next { font-size: 18px; padding: 10px; }

    .cta-image-banner { background: linear-gradient(rgba(28,47,56,0.9), rgba(28,47,56,0.9)), url('../img/img_carrossel2.png'); text-align: center; padding: 4rem 0; }
    .cta-wrapper { max-width: 100%; text-align: center; }
    .cta-wrapper h2 { font-size: 2.2rem; }

    .cta-servicos { justify-content: center; background: linear-gradient(rgba(28,47,56,0.9), rgba(28,47,56,0.9)), url('../img/img_carrossel2.png'); }
    .cta-wrapper-servicos { text-align: center; padding-right: 1rem; padding-left: 1rem; }

    .qualidade-container { flex-direction: column; }
    .qualidade-image-wrapper { height: 300px; min-height: auto; }
    .qualidade-content h2 { font-size: 2rem; }
    
    .processo-seta { display: none; }
    .processo-grid { flex-direction: column; align-items: center; }
}

/* Mobile Pequeno */
@media (max-width: 600px) {
    .diferenciais-grid { grid-template-columns: 1fr; }
    .footer-content { display: flex; flex-direction: column; text-align: center; }
    .contact-item, .brand-text { justify-content: center; margin-left: auto; margin-right: auto; }
    .social-icons { justify-content: center; }
    .sobre-stats-grid { grid-template-columns: 1fr; }
    .video-box { height: 350px; }
    .play-pulse { width: 70px; height: 70px; font-size: 1.8rem; }
    .video-text-box h2 { font-size: 1.5rem; }
    
    .principios-row { grid-template-columns: 1fr; }
    .p-card-modern { border-right: none; border-bottom: 1px solid var(--cor-principal); }
    .p-card-modern.highlight { transform: none; }
}

@media (max-width: 480px) {
    .header-inner { padding: 1rem; }
    .home-hero, .sobre-hero, .page-header-produtos { padding: 4rem 1rem; }
    .home-hero h1, .sobre-hero h1 { font-size: 2rem; }
    .section-title { font-size: 2rem; }
    .about-collage { height: 300px; }
    .about-text-content h2 { font-size: 2rem; }
    .services-txt-col h2 { font-size: 2rem; }
    .btn-text { padding: 12px 15px; font-size: 0.8rem; }
}