@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@400;600&display=swap');

:root {
    --primary: #FFE24B;
    --primary-dark: #FFD700;
    --secondary: #222222;
    --accent: #BF0000;
    --text-dark: #111111;
    --text-light: #555555;
    --white: #FFFFFF;
    --bg-light: #F9F9F9;
    --shadow: 0 15px 35px rgba(0,0,0,0.1);
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- HEADER --- */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    background: #000; /* Fundo preto para igualar a logo */
    transition: all 0.3s ease;
}

header.scrolled {
    position: fixed;
    background: #000;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    padding: 10px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px; /* Aumentado de 50px para 70px */
    mix-blend-mode: screen; /* Deixa o fundo preto transparente */
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--white); /* Links brancos no fundo preto */
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.3s;
}

nav a:hover {
    color: var(--accent);
}

.header-btn {
    background: var(--primary);
    padding: 12px 25px;
    border-radius: 50px;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 226, 75, 0.3);
    transition: 0.3s;
}

.header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 226, 75, 0.5);
}

/* --- HERO --- */
.hero {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #fdfdfd 0%, #f5f5f5 100%);
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 40%;
    height: 60%;
    background: var(--primary);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 25px;
    color: var(--secondary);
}

.hero-content h1 span {
    color: var(--accent);
    display: block;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-main {
    background: var(--secondary);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: 0.3s;
}

.btn-main:hover {
    background: var(--text-dark);
    transform: translateY(-3px);
}

.btn-sec {
    background: var(--primary);
    color: var(--secondary);
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: 0.3s;
}

.btn-sec:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.hero-image img {
    width: 100%;
    filter: drop-shadow(20px 20px 50px rgba(0,0,0,0.1));
}

/* --- SERVICES --- */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 5px;
    background: var(--primary);
    margin: 15px auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: 0.4s;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--primary);
}

.service-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
}

.svc-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: 0.3s;
    color: var(--secondary);
}

.service-card:hover .svc-icon {
    background: var(--secondary);
    color: var(--primary);
    transform: rotate(-5deg) scale(1.1);
}

/* --- HOW IT WORKS --- */
.steps {
    background: #111;
}

.steps .section-title h2 {
    color: var(--white);
}

.steps .section-title p {
    color: #888;
}

.steps .section-title h2::after {
    background: var(--primary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px; /* Aumentado de 50px para 80px */
}

.step-card {
    background: #1c1c1c;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 40px 30px 35px;
    text-align: center;
    position: relative;
    transition: 0.3s;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transform: scaleX(0);
    transition: 0.3s;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: #333;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 64px;
    font-weight: 900;
    color: rgba(255,226,75,0.08);
    line-height: 1;
    margin-bottom: 15px;
    letter-spacing: -2px;
}

.step-icon-box {
    width: 75px;
    height: 75px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--secondary);
    transition: 0.3s;
}

.step-card:hover .step-icon-box {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(255,226,75,0.4);
}

.step-card h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 12px;
}

.step-card p {
    color: #777;
    font-size: 14px;
    line-height: 1.8;
}

@media (max-width: 991px) {
    .steps-grid { grid-template-columns: 1fr; }
}

.steps {
    background: #111;
}

.steps .section-title h2 {
    color: var(--white);
}

.steps .section-title p {
    color: #aaa;
}

.steps .section-title h2::after {
    background: var(--primary);
}

.steps-grid {
    display: flex;
    align-items: center;
    gap: 0;
}

.step-arrow {
    color: var(--primary);
    font-size: 24px;
    padding: 0 15px;
    flex-shrink: 0;
    opacity: 0.5;
}

.step-card {
    flex: 1;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: 0.3s;
}

.step-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.step-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--secondary);
    font-size: 13px;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    padding: 5px 15px;
    border-radius: 30px;
    letter-spacing: 1px;
}

.step-icon-box {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 25px;
    font-size: 32px;
    color: var(--secondary);
    transition: 0.3s;
}

.step-card:hover .step-icon-box {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255,226,75,0.4);
}

.step-card h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 12px;
}

.step-card p {
    color: #888;
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .steps-grid {
        flex-direction: column;
        gap: 30px;
    }
    .step-arrow {
        transform: rotate(90deg);
        padding: 0;
    }
    .step-card {
        width: 100%;
    }
}


/* --- CTA --- */
.cta {
    background: var(--secondary);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.8;
}

/* --- FOOTER --- */
footer {
    background: #111;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 70px; /* Aumentado também no rodapé */
    mix-blend-mode: screen;
    margin-bottom: 20px;
}

.footer-links h4 {
    margin-bottom: 25px;
    font-size: 18px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #222;
    color: #555;
    font-size: 14px;
}

.copyright a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* --- MOBILE MENU & RESPONSIVE --- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 991px) {
    .hero { padding: 140px 0 60px; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-content h1 { font-size: 38px; }
    .hero-btns { justify-content: center; flex-wrap: wrap; }
    .hero-content p { margin: 0 auto 30px; }
    .hero-image { order: -1; max-width: 300px; margin: 0 auto; }
    
    .section { padding: 60px 0; }
    .section-title h2 { font-size: 32px; }
    .services-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; gap: 30px; }
    
    .cta h2 { font-size: 32px; }
    .cta p { font-size: 16px; }
    
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    
    /* Hamburger Menu Styles */
    .mobile-menu-toggle { display: block; }
    
    nav#nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #000;
        z-index: 200;
        transition: 0.4s ease;
        padding: 100px 40px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    
    nav#nav-menu.active {
        right: 0;
    }
    
    nav#nav-menu ul {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    nav#nav-menu a {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .logo img { height: 55px; }
    .header-btn { display: none; } /* Esconde o botão grande em celulares muito pequenos */
    .hero-content h1 { font-size: 32px; }
    .btn-main, .btn-sec { width: 100%; text-align: center; padding: 15px 20px; }
}
