/* RESET E CONFIGURAÇÕES GERAIS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

:root {
    --bege-acetinado: #f7f3e9;
    --dourado-escuro: #c5a059;
    --grafite: #2c2c2c;
    --branco: #ffffff;
    --verde-whatsapp: #1aa13c;
    --sombra: rgba(0,0,0,0.1);
}

body {
    background-color: var(--bege-acetinado);
    color: var(--grafite);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER - LOGO AUMENTADA */
header {
    background: var(--branco);
    padding: 20px 0;
    border-bottom: 3px solid var(--dourado-escuro);
    box-shadow: 0 2px 10px var(--sombra);
}

.flex-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.main-logo {
    max-width: 240px; /* Aumentado de 180px para 240px */
    height: auto;
}

.header-info {
    text-align: right;
}

.header-info p {
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #777;
    margin-bottom: 4px;
    font-weight: 400;
}

.header-info span {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--grafite);
    display: block;
}

/* HERO */
.hero {
    padding: 60px 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
}

.flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.hero-text h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.benefits-top {
    list-style: none;
    margin-top: 20px;
}

.benefits-top li {
    font-weight: 700;
    margin-bottom: 10px;
}

.check-icon {
    color: var(--dourado-escuro);
    margin-right: 10px;
}

/* FORMULÁRIO */
.form-container {
    background: var(--branco);
    padding: 30px;
    border-radius: 15px;
    width: 100%;
    max-width: 400px;
    color: var(--grafite);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.form-container h3 {
    text-align: center;
    margin-bottom: 25px;
}

label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #666;
}

input, select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.simulador-box {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

#valor-exibido {
    color: var(--verde-whatsapp);
    font-weight: 700;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--verde-whatsapp);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #147a2d;
    transform: translateY(-2px);
}

/* CONTEÚDO */
.info-sections { padding: 80px 0; }

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.info-box {
    background: var(--branco);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--sombra);
}

.info-box h3 {
    border-bottom: 3px solid var(--dourado-escuro);
    display: inline-block;
    margin-bottom: 20px;
}

.dark-card { background: var(--grafite); color: white; }

.comp-table { width: 100%; border-collapse: collapse; }
.comp-table th, .comp-table td { padding: 12px 5px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.comp-table th { color: var(--dourado-escuro); text-align: left; font-size: 0.8rem; }

/* GALERIA */
.institutional-gallery {
    display: grid;
    grid-template-columns: repeat(1, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.institutional-gallery img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--sombra);
    transition: 0.3s;
}

.institutional-gallery img:hover { transform: translateY(-5px); }

/* SEÇÃO FINAL */
.atendimento-nacional {
    text-align: center;
    padding: 60px 20px;
    background: var(--grafite);
    color: white;
    border-radius: 20px;
}

.badge-brasil {
    display: inline-block;
    margin-top: 20px;
    background: var(--dourado-escuro);
    color: var(--grafite);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 700;
}

.container-btn-empresa { text-align: center; margin: 40px 0; }
.btn-conheca-empresa {
    display: inline-block;
    padding: 15px 40px;
    background: var(--dourado-escuro);
    color: var(--grafite);
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: 0.5s;
}

.btn-conheca-empresa:hover {
    background: var(--branco);
    box-shadow: 0 5px 15px var(--sombra);
}

/* FOOTER */
footer {
    background: #111;
    color: #666;
    padding: 60px 0 30px;
    text-align: center;
}

.footer-links { margin: 15px 0; }
.footer-links a { color: var(--dourado-escuro); text-decoration: none; margin: 0 10px; font-size: 0.9rem; }

/* WHATSAPP FLOAT */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 999;
}

.whatsapp-btn img { width: 30px; }

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .flex { flex-direction: column; text-align: center; }
    .hero-text h2 { font-size: 2rem; }
    .header-info { text-align: center; margin-top: 15px; }
    .header-info p { font-size: 1rem; }
    .header-info span { font-size: 1.2rem; }
    .main-logo { max-width: 200px; } /* Ajuste fino para mobile */
}