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

:root {
    --primary-color: #5b4d99;
    --secondary-color: #7b68d6;
    --dark-bg: #0a2332;
    --light-bg: #f0f8fb;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --border-color: #e0e0e0;
    --success-color: #00d084;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* HEADER */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-dark);
}

.logo {
    width: 50px;
    height: 50px;
}

.logo-section h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* NAVBAR TOGGLER */
.navbar-toggler {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}

.navbar-toggler span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar-toggler.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.navbar-toggler.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-close {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    padding: 0.5rem 1rem;
}

@media (max-width: 768px) {
    .navbar-toggler {
        display: flex;
    }

    .nav-links {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        flex-direction: column;
        gap: 0;
        padding: 2rem 1.5rem;
        list-style: none;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 99;
        align-items: flex-start;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        color: white;
        width: 100%;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        font-size: 1.1rem;
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 5px;
    }

    .nav-close {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
    }

    .header-inner {
        flex-direction: row;
        gap: 0;
    }
}

/* HERO SECTION */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 4rem 0;
    margin: 2rem 0;
}

.hero-content h2 {
    font-size: 3rem;
    color: var(--dark-bg);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.placeholder-image {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
}

.placeholder-image svg {
    width: 100%;
    height: 100%;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 15px rgba(0, 168, 204, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 168, 204, 0.4);
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

/* SECTIONS */
section {
    padding: 4rem 0;
}

.section-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-content h2 {
    font-size: 2.5rem;
    color: var(--dark-bg);
    margin-bottom: 1.5rem;
}

.section-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* ABOUT SECTION */
.about {
    background: linear-gradient(135deg, var(--light-bg), #ffffff);
}

/* PROCESS SECTION */
.process {
    background: var(--light-bg);
}

.process h2 {
    font-size: 2.5rem;
    color: var(--dark-bg);
    margin-bottom: 3rem;
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 168, 204, 0.2);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.3rem;
    color: var(--dark-bg);
    margin-bottom: 1rem;
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
}

.info-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.info-link:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

/* MVP SECTION */
.mvp-section {
    background: linear-gradient(135deg, var(--dark-bg), #1a4d5a);
    color: white;
}

.mvp-section h2,
.mvp-section p {
    color: white;
}

.mvp-section .section-content {
    color: white;
}

.mvp-section .section-content p {
    color: rgba(255, 255, 255, 0.9);
}

.mvp-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.benefit p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* ESPECIALIDADES SECTION */
.specialties {
    background: white;
}

.specialties h2 {
    font-size: 2.5rem;
    color: var(--dark-bg);
    margin-bottom: 3rem;
    text-align: center;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.specialty-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.specialty-card:hover {
    border-top-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 168, 204, 0.15);
    transform: translateY(-5px);
}

.specialty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.specialty-card h3 {
    font-size: 1.4rem;
    color: var(--dark-bg);
    margin-bottom: 1rem;
}

.specialty-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* HOSPEDAGEM SECTION */
.hosting {
    background: linear-gradient(135deg, var(--light-bg), #ffffff);
}

.hosting h2 {
    font-size: 2.5rem;
    color: var(--dark-bg);
    margin-bottom: 1.5rem;
    text-align: center;
}

.hosting-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.hosting-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-color);
}

.hosting-card h3 {
    font-size: 1.5rem;
    color: var(--dark-bg);
    margin-bottom: 1rem;
}

.hosting-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hosting-card ul {
    list-style: none;
    text-align: left;
}

.hosting-card li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

/* DIFERENCIAIS SECTION */
.differentials {
    background: white;
}

.differentials h2 {
    font-size: 2.5rem;
    color: var(--dark-bg);
    margin-bottom: 3rem;
    text-align: center;
}

.differentials-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.differential {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.differential:hover {
    box-shadow: 0 4px 15px rgba(0, 168, 204, 0.2);
    transform: translateX(5px);
}

.check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.differential h4 {
    font-size: 1.2rem;
    color: var(--dark-bg);
    margin-bottom: 0.5rem;
}

.differential p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* CTA SECTION */
.cta-section {
    background: linear-gradient(135deg, var(--dark-bg), #1a4d5a);
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-section .btn {
    margin: 1rem;
}

.contact-info {
    margin-top: 2rem;
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

/* FOOTER */
footer {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 2rem 0;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    section {
        padding: 2.5rem 0;
    }

    .section-content h2,
    .process h2,
    .specialties h2,
    .hosting h2,
    .differentials h2 {
        font-size: 1.8rem;
    }

    .process-steps,
    .specialties-grid,
    .hosting-options,
    .differentials-list {
        grid-template-columns: 1fr;
    }

    .step,
    .specialty-card,
    .hosting-card,
    .differential {
        padding: 1.5rem;
    }

    .cta-section {
        padding: 3rem 0;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .mvp-benefits {
        grid-template-columns: 1fr;
    }

    .header-inner {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.5rem;
    }

    .section-content h2 {
        font-size: 1.5rem;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .btn-primary {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .differential {
        flex-direction: column;
        text-align: center;
    }

    .check {
        margin: 0 auto;
    }
}
