/* Variáveis do Tema (Baseado no seu design) */
:root {
    --primary: #e60050; /* Vermelho/Pink vibrante do logo e botões */
    --primary-hover: #c40044;
    --dark-bg: #1c1f26; /* Fundo do formulário de contato */
    --darker-bg: #111317; /* Fundo do rodapé e navbar */
    --text-dark: #333333;
    --text-light: #f4f4f4;
    --text-gray: #777777;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-primary { color: var(--primary); }
.text-center { text-align: center; }
.bg-light { background-color: #fcfcfc; }
.section-padding { padding: 80px 0; }
.w-100 { width: 100%; }

h1, h2, h3, h4, .font-heading {
    font-family: var(--font-heading);
    font-weight: 800;
}

/* Tipografia Comum */
.section-tag {
    color: var(--primary);
    font-weight: 800;
    font-family: var(--font-heading);
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #111;
}

/* Botões */
.btn-primary {
    display: inline-block;
    background-color: var(--primary);
    color: #fff;
    padding: 15px 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-outline {
    display: inline-block;
    border: 1px solid #555;
    color: #fff;
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ================== HEADER E TOP BAR ================== */
.top-bar {
    background-color: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img h2 {
    margin: 0;
    font-size: 2rem;
    letter-spacing: -1px;
}

.top-info {
    display: flex;
    gap: 30px;
}

.info-block {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-block i {
    font-size: 1.5rem;
}

.info-block strong {
    display: block;
    font-size: 0.9rem;
    color: #111;
}

.info-block p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Nav Bar Escura */
#main-header {
    background-color: var(--darker-bg);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
}

.mobile-toggle {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ================== HERO ================== */
#hero {
    position: relative;
    /* Imagem atualizada para o seu banner local */
    background: url('banner_principal.png') center/cover no-repeat;
    padding: 120px 0;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 19, 23, 0.75);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: block;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 40px;
    color: #ddd;
}

/* ================== SOBRE NÓS ================== */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.sobre-text p {
    margin-bottom: 20px;
    color: var(--text-gray);
}

.check-list {
    list-style: none;
    margin-top: 30px;
}

.check-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
}

.check-list i {
    margin-top: 5px;
}

.sobre-img img, .exclusivos-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ================== SERVIÇOS (ICONS) ================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card .icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
    border-radius: 10px;
    transform: rotate(45deg); /* Dá o formato de losango da sua imagem */
    transition: 0.3s;
}

.service-card:hover .icon-box {
    background-color: var(--primary);
}

.service-card .icon-box i {
    font-size: 2rem;
    color: var(--primary);
    transform: rotate(-45deg); /* Desvira o ícone */
    transition: 0.3s;
}

.service-card:hover .icon-box i {
    color: #fff;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* ================== CTA BANNER ================== */
#cta-banner {
    position: relative;
    background: url('https://images.unsplash.com/photo-1496247749665-49cf5b1022e9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    padding: 100px 0;
    background-attachment: fixed; /* Efeito Parallax */
}

.cta-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(28, 31, 38, 0.85);
}

.cta-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.cta-content h2 { color: #fff; }
.cta-content p { margin-bottom: 30px; font-size: 1.2rem; }

/* ================== EXCLUSIVOS (TIMELINE) ================== */
.timeline {
    margin-top: 30px;
    border-left: 2px solid #eee;
    padding-left: 20px;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-icon {
    position: absolute;
    left: -32px;
    top: 0;
    background: #fff;
    padding: 5px 0;
}

.timeline-icon i {
    font-size: 1.2rem;
}

.timeline-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* ================== CONTATO (FUNDO ESCURO) ================== */
#contato {
    background-color: var(--dark-bg);
    color: #fff;
    padding: 80px 0;
}

.contato-info h2 {
    color: #fff;
    font-size: 3rem;
    text-transform: none;
}

.contato-info p {
    color: #aaa;
    font-size: 1.1rem;
}

.form-header-info {
    margin-bottom: 30px;
}

.form-header-info h3 {
    margin-bottom: 15px;
}

.form-header-info ul {
    list-style: none;
}

.form-header-info li {
    margin-bottom: 10px;
    color: #aaa;
    font-size: 0.95rem;
}

#form-orcamento label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #ccc;
}

#form-orcamento input, #form-orcamento textarea {
    width: 100%;
    background-color: #5c6270; /* Coracinza azulado da sua imagem */
    border: none;
    padding: 15px;
    margin-bottom: 20px;
    color: #fff;
    font-family: var(--font-body);
}

#form-orcamento input:focus, #form-orcamento textarea:focus {
    outline: 2px solid var(--primary);
}

/* ================== FOOTER ================== */
#footer {
    /* Imagem atualizada com película de escurecimento (overlay) */
    background: linear-gradient(rgba(17, 19, 23, 0.9), rgba(17, 19, 23, 0.9)), url('banner_rodape.png') center/cover no-repeat;
    color: #aaa;
    padding: 60px 0 20px;
    border-top: 1px solid #333;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-contact-list {
    list-style: none;
    margin-top: 20px;
}

.footer-contact-list li {
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
}

.links-col ul { list-style: none; }
.links-col li { margin-bottom: 12px; }
.links-col a { color: #aaa; text-decoration: none; transition: 0.3s; }
.links-col a:hover { color: var(--primary); }

.footer-bottom {
    text-align: center;
    border-top: 1px solid #2a2a2a;
    padding-top: 20px;
    font-size: 0.85rem;
}

/* ================== WHATSAPP FLUTUANTE ================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary);
    color: #fff;
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #25d366; /* Fica verde no hover */
}

/* ================== ANIMAÇÃO FADE-IN ================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* ================== RESPONSIVIDADE ================== */
@media (max-width: 900px) {
    .grid-2, .footer-grid, .contato-wrapper {
        grid-template-columns: 1fr;
    }
    
    .top-info { display: none; } /* Esconde info do topo no mobile */
    
    .hero-content h1 { font-size: 2.5rem; }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0; width: 100%;
        background: var(--darker-bg);
        padding: 20px 0;
        text-align: center;
    }
    
    .nav-links.active { display: flex; }
    .mobile-toggle { display: block; }
    .btn-outline { display: none; } /* Esconde o botão do menu no mobile */
}

/* ================== MENU TRANSPARENTE SOBRE O BANNER ================== */
.top-bar {
    background-color: transparent;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1001;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Linha divisória bem suave */
}

/* Força os textos do topo a ficarem brancos para contrastar com a imagem escura */
.logo-img h2, 
.info-block strong, 
.info-block p {
    color: #ffffff !important;
}

#main-header {
    background-color: transparent;
    position: absolute;
    width: 100%;
    top: 85px; /* Posiciona o menu de navegação logo abaixo da top-bar */
    z-index: 1000;
}

#hero {
    /* Aumenta o espaçamento superior para o texto principal não embolar com o menu */
    padding-top: 220px; 
}