/* --- 1. VARIÁVEIS & RESET --- */
:root {
    --primary: #492682;
    --primary-dark: #2E1A47;
    --accent-start: #FDB913;
    --accent-end: #F05A28;
    --white: #FFFFFF;
    --off-white: #F9F9FC; /* Levemente mais claro para elegância */
    --text-dark: #2C2C2C; /* Preto suavizado */
    --text-light: #555555;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Lato', sans-serif;
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.08); /* Sombra mais suave */
    --shadow-float: 0 15px 35px rgba(0, 0, 0, 0.15);
    --gradient-fenice: linear-gradient(135deg, var(--accent-start), var(--accent-end));
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Tipografia Geral Refinada */
body { 
    font-family: var(--font-body); 
    color: var(--text-dark); 
    background-color: var(--white); 
    line-height: 1.8; /* Aumentado para melhor leitura */
    font-size: 16px;
    overflow-x: hidden; 
}

h1, h2, h3, h4, h5 { 
    font-family: var(--font-heading); 
    color: var(--primary); 
    font-weight: 700; 
    line-height: 1.3;
}

p { margin-bottom: 1.5rem; color: var(--text-light); }
a { text-decoration: none; transition: all 0.3s ease; }
img { max-width: 100%; display: block; }
ul { list-style: none; } /* Remove pontos de lista globalmente */

/* Componentes de UI */
.btn { 
    display: inline-block; 
    padding: 14px 36px; /* Botões mais largos */
    border-radius: 50px; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 0.5px;
    cursor: pointer; 
    border: none; 
    font-size: 0.9rem;
}

.btn-primary { background: var(--gradient-fenice); color: var(--white); box-shadow: 0 4px 15px rgba(240, 90, 40, 0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(240, 90, 40, 0.5); }
.btn-outline { border: 2px solid var(--white); color: var(--white); background: transparent; }
.btn-outline:hover { background: var(--white); color: var(--primary); }

.container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.section-padding { padding: 100px 0; } /* Mais espaçamento vertical */

.section-title { text-align: center; margin-bottom: 70px; }
.section-title h2 { font-size: 2.5rem; margin-bottom: 15px; }
.section-title .line { width: 80px; height: 4px; background: var(--gradient-fenice); margin: 0 auto; border-radius: 2px; }

/* Left Align titles (usado em Quem Somos) */
.left-align { text-align: left; }
.left-align-line { margin: 0; }
.text-justify { text-align: justify; }

/* --- HEADER & NAV --- */
header {
    position: fixed; top: 0; width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.03);
    z-index: 1000; padding: 12px 0;
}

.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo-img-header { height: 50px; width: auto; }

/* Menu Desktop - Pontos removidos via reset global 'ul' */
.nav-links { display: flex; gap: 35px; align-items: center; }
.nav-links a { color: var(--primary); font-weight: 600; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.5px; position: relative; }
.nav-links a:hover { color: var(--accent-end); }
/* Efeito sutil de hover no menu */
.nav-links a::after {
    content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0; background-color: var(--accent-end); transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }

/* Mobile Menu Icons */
.mobile-menu-icon { display: none; font-size: 1.8rem; color: var(--primary); cursor: pointer; margin-left: auto; }
.mobile-only { display: none; }
.desktop-only { display: block; }

/* Responsivo Menu */
@media (max-width: 992px) {
    .mobile-menu-icon { display: block; }
    .desktop-only { display: none; }
    .mobile-only { display: block; margin-top: 20px; }
    .nav-menu {
        position: fixed; top: 74px; right: -100%; width: 100%; height: calc(100vh - 74px);
        background: var(--white); flex-direction: column; align-items: center; justify-content: flex-start;
        padding-top: 50px; transition: 0.4s ease; box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }
    .nav-menu.active { right: 0; }
    .nav-links { flex-direction: column; width: 100%; gap: 25px; }
    .nav-links a { font-size: 1.2rem; display: block; padding: 10px; }
    .nav-links a::after { display: none; }
}

/* --- HERO (Texto Branco) --- */
.hero { height: 100vh; position: relative; display: flex; align-items: center; text-align: center; color: var(--white); margin-top: 70px; overflow: hidden; }
.hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(46, 26, 71, 0.65); z-index: 0; } /* Overlay um pouco mais escuro para contraste */
.hero-content { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; padding: 0 20px; }

/* CORRIGIDO: Texto forçado para branco */
.hero h1 { 
    font-size: 3.5rem; 
    margin-bottom: 25px; 
    color: #FFFFFF !important; /* Importante para garantir override */
    text-shadow: 0 4px 20px rgba(0,0,0,0.4); 
    font-weight: 800;
}
.text-highlight { color: var(--accent-start); }
.hero p { 
    font-size: 1.4rem; 
    color: #f0f0f0 !important; 
    font-weight: 300; 
    margin-bottom: 40px; 
}
.hero-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

/* --- FEATURES --- */
.features { margin-top: -100px; margin-bottom: -50px; position: relative; z-index: 10; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.feature-card { 
    background: var(--white); padding: 50px 35px; border-radius: 15px; 
    box-shadow: 0 15px 40px rgba(0,0,0,0.08); text-align: center; 
    border-bottom: 5px solid transparent; transition: 0.4s; 
}
.feature-card:hover { transform: translateY(-15px); border-bottom: 5px solid var(--accent-end); }
.feature-icon { font-size: 3rem; margin-bottom: 25px; background: var(--gradient-fenice); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* --- A EMPRESA & NOVA SEÇÃO DE IDENTIDADE --- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; margin-bottom: 80px; }
.about-img img { border-radius: 15px; box-shadow: var(--shadow-card); }
.about-content blockquote { border-left: 5px solid var(--accent-start); padding-left: 25px; margin: 30px 0; font-style: italic; color: var(--primary); font-weight: 600; font-size: 1.1rem; }

/* Estilo para Visão, Missão e Valores (Layout Expandido) */
.corporate-identity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.identity-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #eeeeee;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease;
}

.identity-card:hover { transform: translateY(-5px); border-color: var(--accent-start); }

.identity-card .icon-wrapper {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.identity-card h3 { 
    font-size: 1.5rem; 
    margin-bottom: 20px; 
    position: relative;
    padding-bottom: 15px;
}

.identity-card h3::after {
    content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 3px; background: var(--accent-end);
}

.identity-card p { font-size: 0.95rem; line-height: 1.7; color: var(--text-light); margin-bottom: 15px; text-align: justify; }

/* --- PRODUTOS --- */
.bg-off-white { background-color: var(--off-white); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; }
.product-item { display: block; position: relative; overflow: hidden; border-radius: 12px; height: 260px; box-shadow: var(--shadow-card); cursor: pointer; }
.product-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-overlay { position: absolute; bottom: 0; left: 0; width: 100%; background: linear-gradient(to top, rgba(73, 38, 130, 0.95), transparent); padding: 20px; color: var(--white); }
.product-item:hover img { transform: scale(1.15); }
.product-item h3 { color: var(--white); font-size: 1.1rem; margin: 0; font-weight: 600; text-shadow: 0 2px 5px rgba(0,0,0,0.3); }

/* --- DEPOIMENTOS --- */
.dark-section { background-color: var(--primary); color: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.testimonial-card { background: var(--white); padding: 40px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); color: var(--text-dark); position: relative; }
.testimonial-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.testimonial-avatar { width: 60px; height: 60px; border-radius: 50%; background: var(--primary); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 1.2rem; }
.testimonial-info h4 { font-size: 1.1rem; margin-bottom: 4px; color: var(--primary); }
.testimonial-info span { font-size: 0.85rem; color: var(--accent-end); font-weight: 700; text-transform: uppercase; }

/* --- MAPA --- */
.location-section { padding: 0; margin-bottom: -5px; /* Remove gaps */ }

/* --- CONTATO --- */
.contact-section { background: var(--white); }
.contact-wrapper { max-width: 800px; margin: 0 auto; }
.form-control { 
    width: 100%; padding: 18px; /* Input mais alto */
    border: 1px solid #ddd; background: #fafafa;
    border-radius: 8px; font-family: var(--font-body); margin-bottom: 20px; font-size: 1rem; transition: 0.3s; 
}
.form-control:focus { border-color: var(--primary); background: #fff; outline: none; box-shadow: 0 0 0 3px rgba(73, 38, 130, 0.1); }
textarea.form-control { height: 180px; resize: none; }

/* --- FOOTER --- */
footer { background: var(--primary-dark); color: var(--white); padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 50px; margin-bottom: 50px; }
.logo-img-footer { height: 80px; width: auto; margin-bottom: 20px; }

.footer-links h4 { color: var(--accent-start); margin-bottom: 25px; font-size: 1.2rem; }

/* CORRIGIDO: Itens do rodapé em Branco e com Espaçamento */
.footer-contact-item {
    display: flex;
    align-items: flex-start; /* Alinha icone ao topo do texto */
    gap: 15px;
    margin-bottom: 20px; /* Espaçamento entre itens */
    color: #FFFFFF; /* Força branco */
}

.footer-contact-item i {
    color: var(--white); /* Icone branco */
    font-size: 1.1rem;
    margin-top: 4px; /* Ajuste fino vertical */
    min-width: 20px; /* Garante alinhamento */
}

.footer-contact-item span {
    color: rgba(255, 255, 255, 0.9); /* Branco levemente transparente para suavidade */
    font-size: 1rem;
}

.copyright { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.85rem; color: rgba(255, 255, 255, 0.5); }

/* WhatsApp */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: #25D366; color: white; width: 65px; height: 65px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 35px; z-index: 2000; box-shadow: 0 4px 15px rgba(0,0,0,0.3); transition: transform 0.3s; }
.whatsapp-float:hover { transform: scale(1.1); }

/* --- MEDIA QUERIES --- */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { text-align: center; }
    .footer-contact-item { justify-content: center; }
}