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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background: #f8fafc;
}

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

/* HEADER / MENU */
.main-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0.8rem 0;
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0f172a;
}
.logo span {
    color: #2a7de1;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.main-nav a {
    text-decoration: none;
    font-weight: 500;
    color: #334155;
    transition: color 0.2s;
}
.main-nav a:hover {
    color: #2a7de1;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: transparent;
    border: none;
}
.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #0f172a;
    border-radius: 2px;
    transition: 0.2s;
}

/* HERO */
.hero {
    padding: 3rem 0 4rem;
    background: linear-gradient(145deg, #f0f4ff, #ffffff);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
}
.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0f172a;
}
.hero-content h1 span {
    color: #2a7de1;
}
.hero-sub {
    font-size: 1.2rem;
    color: #475569;
    margin: 1rem 0 1.8rem;
}
.hero-image img {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(42,125,225,0.15);
}

/* BOTÃO */
.btn {
    display: inline-block;
    background: #2a7de1;
    color: #fff;
    padding: 0.7rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.25s;
}
.btn-primary:hover {
    background: #1a5cb5;
}

/* SEÇÃO TÍTULO */
.section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #0f172a;
    text-align: center;
}

/* SOBRE */
.about {
    padding: 3rem 0;
    background: #fff;
}
.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}
.about-text p {
    margin-bottom: 1rem;
    color: #334155;
}
.about-stats {
    display: flex;
    justify-content: space-around;
    background: #f1f5f9;
    padding: 1.5rem 1rem;
    border-radius: 20px;
}
.stat-item {
    text-align: center;
}
.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2a7de1;
}
.stat-label {
    color: #475569;
}

/* CARDS */
.cards-section {
    padding: 3rem 0;
    background: #f8fafc;
}
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}
.card {
    background: #fff;
    padding: 1.8rem 1.2rem;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.2s;
}
.card:hover {
    transform: translateY(-6px);
}
.card-icon {
    font-size: 2.8rem;
    margin-bottom: 0.6rem;
}
.card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
    color: #0f172a;
}
.card p {
    color: #475569;
    font-size: 0.95rem;
}

/* DEPOIMENTOS */
.testimonials {
    padding: 3rem 0;
    background: #ffffff;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.8rem;
}
.testimonial-item {
    background: #f1f5f9;
    padding: 1.5rem 1.2rem;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.testimonial-item p {
    font-style: italic;
    color: #1e293b;
}
.testimonial-item .author {
    margin-top: 0.8rem;
    font-weight: 600;
    color: #2a7de1;
}

/* CONTATO */
.contact {
    padding: 3rem 0;
    background: #f8fafc;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.form-group {
    margin-bottom: 1.2rem;
}
.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.3rem;
    color: #1e293b;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid #d1d9e6;
    border-radius: 12px;
    font-family: inherit;
    transition: 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2a7de1;
    box-shadow: 0 0 0 3px rgba(42,125,225,0.15);
}
.form-feedback {
    margin-top: 1rem;
    font-weight: 500;
    color: #2a7de1;
}
.contact-info {
    background: #fff;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.contact-info p {
    margin-bottom: 0.8rem;
}
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.2rem;
    font-size: 1.8rem;
}
.social-links a {
    text-decoration: none;
    color: #334155;
    transition: color 0.2s;
}
.social-links a:hover {
    color: #2a7de1;
}

/* RODAPÉ */
.main-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 2rem 0;
    margin-top: 1rem;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.footer-logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
}
.footer-logo span {
    color: #2a7de1;
}
.footer-copy {
    font-size: 0.9rem;
}
.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    margin-left: 1.5rem;
    font-size: 0.9rem;
}
.footer-links a:hover {
    color: #fff;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-image {
        order: -1;
    }
    .hero-image img {
        max-height: 240px;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .main-nav {
        display: none;
        width: 100%;
    }
    .main-nav.open {
        display: block;
        background: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 1.2rem;
        box-shadow: 0 8px 16px rgba(0,0,0,0.08);
        border-radius: 0 0 20px 20px;
    }
    .main-nav.open ul {
        flex-direction: column;
        gap: 0.8rem;
    }
    .menu-toggle {
        display: flex;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-links a {
        margin: 0 0.8rem;
    }
}