:root {
    --primary: #4a90e2;
    /* Azul Sereno */
    --primary-light: #6eb0ff;
    --accent: #f5a623;
    /* Dourado Calmo */
    --bg-main: #fcfcfd;
    --text-main: #2c3e50;
    --text-dim: #7f8c8d;
    --glass: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow: 0 15px 50px rgba(0, 0, 0, 0.03);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 40px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Promo Bar */
.promo-bar {
    background: linear-gradient(90deg, #4a90e2, #5e5ce6);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1200;
    font-weight: 600;
    letter-spacing: 0.5px;
    backdrop-filter: blur(5px);
}

/* Navbar */
.navbar {
    height: 85px;
    position: fixed;
    width: 100%;
    top: 40px;
    z-index: 1100;
    background: var(--glass);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    transition: 0.4s;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Buttons */
.btn {
    padding: 14px 32px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-block;
}

.btn-primary {
    background: var(--primary);
    color: white !important;
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.2);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(74, 144, 226, 0.3);
}

.btn-outline {
    background: white;
    border: 2px solid #eaebed;
    color: var(--text-main) !important;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary) !important;
    transform: translateY(-2px);
}

/* Hero */
.hero {
    padding: 180px 0 120px;
    text-align: center;
    background: radial-gradient(circle at center, rgba(74, 144, 226, 0.04) 0%, transparent 70%);
}

.hero-tag {
    background: #eff6ff;
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 99px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    display: inline-block;
    border: 1px solid rgba(74, 144, 226, 0.1);
}

h1 {
    font-size: 68px;
    font-weight: 800;
    letter-spacing: -3px;
    margin-bottom: 24px;
    line-height: 1.1;
    color: #1a2a3a;
}

h1 span {
    background: linear-gradient(135deg, var(--primary), #5e5ce6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 22px;
    color: var(--text-dim);
    max-width: 800px;
    margin: 0 auto 48px;
    line-height: 1.4;
}

.hero-visual {
    margin-top: 80px;
    perspective: 1000px;
}

.hero-img {
    width: 100%;
    max-width: 1000px;
    border-radius: 50px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.06);
    border: 10px solid white;
    animation: fadeIn 1.5s ease-out;
}

/* Features */
.features {
    padding: 120px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    background: white;
    padding: 60px 40px;
    border-radius: 40px;
    border: 1px solid #f0f1f3;
    transition: 0.5s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: #f8fbff;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    color: var(--primary);
    font-size: 32px;
}

.feature-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-dim);
    font-size: 17px;
}

/* Pricing */
.pricing {
    padding: 120px 0;
    background-color: #f7f9fc;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.price-card {
    background: white;
    border-radius: 45px;
    padding: 60px 40px;
    border: 1px solid #eef0f3;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: 0.4s;
}

.price-card.highlight {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 30px 60px rgba(74, 144, 226, 0.08);
}

.popular {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 20px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.price-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
}

.price-subtitle {
    color: var(--text-dim);
    margin-bottom: 32px;
}

.price-value {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 48px;
    color: #1a2a3a;
}

.price-value span {
    font-size: 18px;
    color: var(--text-dim);
}

.price-features {
    list-style: none;
    margin-bottom: 48px;
    flex: 1;
}

.price-features li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #4a5a6a;
}

.price-features i {
    color: var(--primary);
    font-size: 20px;
}

/* Enterprise */
.enterprise-section {
    margin-top: 80px;
    background: #edf2f7;
    padding: 50px 60px;
    border-radius: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Footer */
footer {
    padding: 100px 0;
}

@media (max-width: 1024px) {

    .price-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 42px;
    }

    .enterprise-section {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}