/* --- VARIÁVEIS E CONFIGURAÇÕES GERAIS --- */
:root {
    --navvy: #0a1e3c;
    --gold: #c5a059;
    --gold-light: #e4d0a3;
    --white: #ffffff;
    --bg-light: #f4f7f9;
    --text-dark: #2d3436;
    --text-gray: #636e72;
    --shadow: 0 15px 35px rgba(0,0,0,0.1);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* --- HEADER --- */
header {
    background: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { font-size: 1.6rem; color: var(--navvy); }
.logo span { color: var(--gold); }

.nav-menu { display: flex; gap: 30px; }
.nav-menu a:hover { color: var(--gold); }

.btn-header {
    background: var(--navvy);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* --- HERO SECTION --- */
.hero {
    padding: 80px 0;
    background: var(--white);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.top-tag {
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 15px;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    line-height: 1.1;
    color: var(--navvy);
    margin-bottom: 25px;
}

.hero-text h1 span { color: var(--gold); }

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.btn-main {
    background: #25d366;
    color: white;
    padding: 18px 35px;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-main:hover { transform: translateY(-3px); filter: brightness(1.1); }

.cta-subtext {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 600;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 10px solid var(--bg-light);
}

/* --- TRUST BAR --- */
.trust-bar {
    background: var(--navvy);
    padding: 30px 0;
    color: var(--white);
}

.trust-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

.trust-item i { color: var(--gold); font-size: 1.2rem; }

/* --- AREAS SECTION --- */
.areas { padding: 100px 0; background: var(--bg-light); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; color: var(--navvy); margin-bottom: 15px; }

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.area-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.area-card:hover { transform: translateY(-10px); }

.area-card i { font-size: 2.5rem; color: var(--gold); margin-bottom: 20px; display: block; }

.area-card h3 { margin-bottom: 15px; color: var(--navvy); }

.btn-area {
    display: inline-block;
    margin-top: 20px;
    color: var(--navvy);
    font-weight: 700;
    border-bottom: 2px solid var(--gold);
}

/* --- SOBRE --- */
.sobre { padding: 100px 0; }
.sobre-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 70px; align-items: center; }

.sobre-img img { border-radius: 20px; }

.sobre-content h2 { font-size: 2.5rem; margin-bottom: 25px; color: var(--navvy); }

.steps { margin-top: 30px; }
.step {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 700;
}

.step span {
    background: var(--gold);
    color: var(--navvy);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- FAQ --- */
.faq { padding: 100px 0; background: var(--navvy); color: var(--white); }
.faq .section-header h2 { color: var(--white); }

.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.faq-item h4 { color: var(--gold); margin-bottom: 10px; font-size: 1.1rem; }
.faq-item p { opacity: 0.8; }

/* --- CONTATO & MAPS --- */
.contato { padding: 100px 0; }
.contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 80px; }

.big-cta { width: 100%; text-align: center; margin: 30px 0; padding: 25px; }

.contato-detalhes p { margin-bottom: 15px; }
.contato-detalhes i { color: var(--gold); margin-right: 10px; }

.contato-form { background: var(--bg-light); padding: 40px; border-radius: 15px; }
.contato-form input, .contato-form textarea {
    width: 100%; padding: 15px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: 5px;
}

.btn-submit {
    width: 100%; background: var(--navvy); color: white; border: none; padding: 18px;
    font-weight: 700; border-radius: 5px; cursor: pointer;
}

.map-wrapper { border-radius: 15px; overflow: hidden; margin: 20px 0; box-shadow: var(--shadow); }
.btn-routes { display: inline-block; background: var(--gold); color: var(--navvy); padding: 12px 25px; border-radius: 5px; font-weight: 700; }

/* --- FLOAT WHATSAPP --- */
.wa-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: 32px; z-index: 2000; box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* --- FOOTER --- */
footer { background: #050d18; color: white; padding: 80px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-links h4 { color: var(--gold); margin-bottom: 20px; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; font-size: 0.8rem; opacity: 0.6; }

/* --- RESPONSIVO --- */
@media (max-width: 992px) {
    .hero-grid, .sobre-grid, .contato-grid, .faq-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-image { order: -1; max-width: 400px; margin: 0 auto; }
    .nav-menu { display: none; }
    .trust-grid { justify-content: center; }
    .sobre-img { display: none; }
}