/* Reset e Variáveis */
:root {
    --primary-yellow: #FFCC00;
    --primary-orange: #FF9900;
    --dark-bg: #0F1117;
    --dark-grey: #1D1F2A;
    --medium-grey: #5A6270;
    --light-grey: #F2F2F4;
    --white: #ffffff;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--dark-grey);
    background-color: var(--light-grey);
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .brand-name, .btn-cta, .btn-pill {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
}

/* --- HEADER --- */
.header {
    background-color: var(--white);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 10px 25px rgba(15, 17, 23, 0.08);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.logo {
    max-height: 48px;
    width: auto;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-name {
    font-weight: 800;
    color: var(--dark-bg);
    font-size: 1.05rem;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-grey);
    transition: color 0.2s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 0;
    left: 0;
    bottom: -5px;
    background: var(--primary-yellow);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-orange);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-pill {
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid transparent;
    background: linear-gradient(90deg, var(--primary-yellow), var(--primary-orange));
    color: var(--dark-bg);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-pill:hover,
.btn-pill:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(255, 153, 0, 0.35);
    color: var(--dark-bg);
    filter: brightness(1.03);
    outline: none;
}

.btn-pill:active {
    transform: translateY(0);
    box-shadow: 0 6px 12px rgba(255, 153, 0, 0.25);
    filter: brightness(0.98);
}

.phone-pill {
    padding: 12px 20px;
    border-radius: 30px;
    background-color: var(--dark-bg);
    color: var(--white);
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* --- HERO --- */
.hero {
    position: relative;
    background-image: linear-gradient(135deg, rgba(15, 17, 23, 0.85), rgba(15, 17, 23, 0.65)), url('../assets/hero-bg.webp');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: center;
}

.hero-copy h1 {
    font-size: 2.8rem;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.85);
}

.eyebrow {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    color: var(--primary-yellow);
    margin-bottom: 10px;
    font-weight: 700;
}

.hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.metric {
    flex: 1;
    min-width: 140px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.metric strong {
    display: block;
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #fff;
}

.metric span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.hero-form .form-box {
    background: var(--white);
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    border-top: 6px solid var(--primary-yellow);
    color: var(--dark-grey);
}

.hero-form .form-box h3 {
    font-size: 1.6rem;
    margin-bottom: 5px;
    text-align: center;
}

.hero-form .form-box p {
    text-align: center;
    margin-bottom: 20px;
    color: var(--medium-grey);
}

.input-group {
    margin-bottom: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .half {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #d3d7df;
    font-family: var(--font-body);
    font-size: 16px;
    background-color: #fdfdfd;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 4px rgba(255, 153, 0, 0.15);
}

.btn-cta {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border: none;
    text-transform: uppercase;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta:disabled {
    background-color: #c7c7c7;
    color: #6b6b6b;
    cursor: not-allowed;
}

.btn-cta:not(:disabled) {
    background: linear-gradient(90deg, var(--primary-yellow), var(--primary-orange));
    color: var(--dark-bg);
    box-shadow: 0 10px 25px rgba(255, 153, 0, 0.35);
}

.btn-cta:not(:disabled):hover {
    transform: translateY(-2px);
}

.privacy-text {
    margin-top: 15px;
    font-size: 0.75rem;
    color: var(--medium-grey);
    text-align: center;
}

/* --- TRUST BADGES --- */
.trust-badges {
    padding: 40px 0 20px;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.badge-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary-yellow);
}

.badge-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--medium-grey);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.badge-card h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--dark-grey);
}

.badge-card p {
    color: var(--medium-grey);
}

/* --- PROCESS --- */
.process {
    padding: 60px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-heading h2 {
    font-size: 2.2rem;
    color: var(--dark-bg);
    font-weight: 700;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.process-step {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #e5e5ea;
    box-shadow: 0 20px 35px rgba(15, 17, 23, 0.08);
}

.step-number {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 204, 0, 0.15);
    color: var(--primary-yellow);
    font-weight: 700;
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.process-step p {
    color: var(--medium-grey);
}

/* --- LOCATION --- */
.location {
    background: var(--dark-bg);
    color: var(--white);
    padding: 70px 0;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    align-items: center;
}

.location-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.location-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.location-info address {
    font-style: normal;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark-bg);
}

.map-responsive iframe {
    width: 100%;
    height: 360px;
    border-radius: 18px;
    border: none;
}

footer {
    background: #05060a;
    color: rgba(255, 255, 255, 0.65);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: rgba(255, 255, 255, 0.75);
}

.footer-content strong {
    color: var(--white);
    font-size: 1.1rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.whatsapp-float img {
    width: 32px;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.35));
}

@media (max-width: 900px) {
    .header {
        padding: 8px 0;
    }

    .header-content {
        justify-content: center;
    }

    .logo {
        max-height: 42px;
    }

    .brand-name {
        font-size: 1rem;
    }

    .nav-menu,
    .phone-pill {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
        background-image: none;
        background-color: var(--dark-bg);
    }

    .hero-copy h1 {
        font-size: 2.1rem;
    }

    .form-row {
        flex-direction: column;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }
}

