/* --- CSS Variables & Resets --- */
:root {
    --primary-dark: #071533;
    --primary-blue: #0A2351;
    --accent-blue: #0066cc;
    --accent-orange: #ff6600;
    --accent-green: #25d366;
    --text-light: #ffffff;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --bg-light: #f4f6f9;
    --bg-white: #ffffff;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 8px;
}

.btn-primary {
    background-color: var(--accent-green);
    color: white;
}
.btn-primary:hover {
    background-color: #1eb955;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--accent-green);
    color: white;
}
.btn-whatsapp:hover {
    background-color: #1eb955;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}
.btn-outline:hover {
    background-color: white;
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* --- Top Bar --- */
.top-bar {
    background-color: var(--primary-dark);
    color: var(--text-light);
    font-size: 0.85rem;
    padding: 10px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-contact, .top-bar-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.whatsapp-link {
    color: var(--accent-green);
    font-weight: 600;
    font-size: 1rem;
}
.whatsapp-link:hover {
    color: #3bf17e;
}

.divider {
    color: rgba(255,255,255,0.2);
}

.instagram-link:hover {
    color: #e1306c;
}

/* --- Navigation --- */
.header {
    background-color: var(--bg-white);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 2.5rem;
    color: var(--accent-orange);
}

.logo-text h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -1px;
}
.logo-text h1 .a { color: var(--accent-blue); }
.logo-text h1 .b { color: var(--accent-green); }
.logo-text h1 .s { color: var(--accent-orange); }

.logo-text p {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: 1px;
}

.nav-menu ul {
    display: flex;
    gap: 25px;
}

.nav-menu a {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
}

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

/* --- Hero Section --- */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    color: white;
    padding: 80px 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 100 L100 0 L100 100 Z" fill="rgba(255,255,255,0.02)"/></svg>');
    background-size: cover;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text .badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent-orange);
}

.hero-text h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-text h2 span {
    color: var(--accent-orange);
}

.hero-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    object-fit: cover;
    height: auto;
}

/* --- Services Banner --- */
.services-banner {
    background-color: var(--primary-dark);
    color: white;
    padding: 40px 0 0 0;
    margin-top: -20px;
    position: relative;
    z-index: 10;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.2);
}

.services-header {
    text-align: center;
    margin-bottom: 40px;
}

.services-header h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
}
.services-header span {
    color: #00bfff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding-bottom: 30px;
}

.service-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.service-item .icon-box {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.service-item h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.services-cta {
    background-color: #051024;
    text-align: center;
    padding: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.whatsapp-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-green);
}
.whatsapp-large:hover {
    color: #3bf17e;
}
.whatsapp-large .divider {
    color: rgba(255,255,255,0.2);
    margin: 0 10px;
}

/* --- Middle Banner --- */
.middle-banner {
    background: linear-gradient(90deg, var(--primary-dark) 0%, #0c2b5e 100%);
    padding: 0;
    margin: 60px 0;
    color: white;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.middle-banner-content {
    display: flex;
    align-items: center;
    padding: 0;
}

.mb-text {
    flex: 1.2;
    padding: 50px;
}

.mb-logo {
    font-family: var(--font-heading);
    color: var(--accent-orange);
    margin-bottom: 20px;
    font-size: 1.2rem;
}
.mb-logo strong {
    color: var(--accent-blue);
}

.mb-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 15px;
}

.mb-text p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    max-width: 500px;
}

.mb-features {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.mb-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    font-size: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
    max-width: 100px;
}
.mb-feature i {
    font-size: 1.5rem;
    color: var(--accent-orange);
}

.mb-cta a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    color: var(--accent-green);
    font-weight: 600;
}
.mb-cta a:hover {
    color: #3bf17e;
}

.mb-image {
    flex: 1;
    height: 100%;
    min-height: 400px;
}
.mb-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
}

/* --- Info Section --- */
.info-section {
    padding: 40px 0 80px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
}

.card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.section-title {
    font-family: var(--font-heading);
    color: var(--primary-blue);
    font-size: 1.4rem;
    margin-bottom: 30px;
    font-weight: 700;
}

/* Como funciona */
.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 40px;
}

.step {
    text-align: center;
    flex: 1;
    position: relative;
    padding: 0 10px;
}

.step-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
    font-family: var(--font-heading);
}

.step-green { background-color: #8cc63f; }
.step-orange { background-color: var(--accent-orange); }
.step-blue { background-color: var(--accent-blue); }

.step-big-icon {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.step p {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.4;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    padding-top: 35px;
}

.coverage-banner {
    background: var(--primary-dark);
    color: white;
    padding: 20px 30px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.coverage-text h4 {
    color: #8cc63f;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 5px;
}
.coverage-text p {
    font-size: 0.95rem;
}
.coverage-icon {
    font-size: 3rem;
    color: rgba(255,255,255,0.1);
}

/* Vantagens */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefits-list li {
    display: flex;
    gap: 15px;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(10, 35, 81, 0.05);
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-size: 1rem;
    margin-bottom: 4px;
}

.benefit-text p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* --- Footer --- */
.footer {
    background-color: #040d21;
    color: white;
    padding: 25px 0;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-contact a {
    color: var(--accent-green);
    font-weight: 600;
}
.footer-contact a:hover {
    color: #3bf17e;
}
.footer-contact .divider {
    margin: 0 10px;
}

.footer-social a:hover {
    color: var(--accent-orange);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .info-grid {
        grid-template-columns: 1fr;
    }
    .mb-image {
        display: none;
    }
    .mb-text {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        justify-content: center;
    }
    .nav-menu {
        display: none; /* simple mobile approach */
    }
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-text h2 {
        font-size: 2.5rem;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-image {
        margin-top: 30px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps-container {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    .step-arrow {
        display: none;
    }
    .mb-features {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}
