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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow-x: hidden;
    color: #333;
}

/* Header */
header {
    background: #1a2332;
    padding: 1.2rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.sidebar-logo {
    height: 40px;
    width: auto;
}

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

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-links a:hover {
    color: #0D8CFF;
}

.btn-primary {
    background: #0D8CFF;
    color: white;
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #0B7AE6;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(13, 140, 255, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a2332 0%, #2d3d52 100%);
    padding: 10rem 10% 6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 100vh;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content .highlight {
    color: #0D8CFF;
}

.hero-content p {
    color: #b8c1ec;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.hero-note {
    color: #8892b8;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.hero-images {
    position: relative;
    height: 500px;
}

.image-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.image-card:hover {
    transform: translateY(-10px);
}

.card-1 {
    width: 280px;
    height: 350px;
    top: 0;
    right: 200px;
    animation: float 3s ease-in-out infinite;
}

.card-2 {
    width: 300px;
    height: 380px;
    top: 80px;
    right: 0;
    animation: float 3s ease-in-out infinite 1s;
}

.icon-placeholder {
    width: 100px;
    height: 100px;
    background: #0D8CFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.scroll-indicator {
    text-align: center;
    margin-top: 3rem;
    color: #8892b8;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Features Section */
.features {
    padding: 6rem 5%;
    background: #f8f9ff;
}

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

.features-header {
    text-align: left;
    margin-bottom: 1rem;
}

.section-tag {
    color: #0D8CFF;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
}

.features-header h2 {
    font-size: 2.5rem;
    color: #1a2332;
    line-height: 1.3;
    margin-bottom: 3rem;
}

.feature-grid {
    display: grid;
    gap: 2rem;
}

.feature-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(13, 140, 255, 0.15);
}

.feature-number {
    background: #0D8CFF;
    color: white;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-content h3 {
    color: #1a2332;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.feature-content p {
    color: #5a6b8c;
    line-height: 1.7;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0D8CFF 0%, #0B7AE6 100%);
    padding: 5rem 5%;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

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

.cta-container p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: white;
    color: #0D8CFF;
}

/* Footer */
footer {
    background: #1a2332;
    color: white;
    padding: 4rem 5% 2rem;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    color: #0D8CFF;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.footer-column ul li {
    margin-bottom: 0.8rem;
}

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

.footer-column a:hover {
    color: #0D8CFF;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-description {
    color: #8892b8;
    line-height: 1.6;
    max-width: 300px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #8892b8;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

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

.footer-links a:hover {
    color: #0D8CFF;
}

/* Responsive */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 8rem 5% 4rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-cta {
        align-items: center;
    }

    .hero-images {
        display: none;
    }

    .features-header h2 {
        font-size: 2rem;
    }

    .feature-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-number {
        margin: 0 auto;
    }

    .cta-container h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 2rem;
    }

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

    .features-header h2 {
        font-size: 1.5rem;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .feature-content h3 {
        font-size: 1.1rem;
    }

    .cta-container h2 {
        font-size: 1.5rem;
    }

    .cta-container p {
        font-size: 1rem;
    }
}

.plans-section {
    padding: 100px 5%;
    background: #f9fafb;
}

.plans-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

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

.plan-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
    position: relative;
    transition: transform .3s, box-shadow .3s;
    align-items: stretch;
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

.plan-card.featured {
    border: 2px solid #1c93d6;
}

.plan-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #1c93d6;
    color: #fff;
    padding: 6px 14px;
    font-size: .75rem;
    border-radius: 20px;
}

.plan-price {
    font-size: 2rem;
    margin: 20px 0;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.plan-features {
    margin-top: 25px;
    margin-bottom: 25px;
    flex-grow: 1; /* 🔥 ISSO AQUI É O PULO DO GATO */
}

.plan-features li {
    margin-bottom: 10px;
    color: #555;
}

.btn-block {
    width: 100%;
    text-align: center;
}
