:root {
    --primary: #1C3F92;
    --secondary: #B5136D;
    --bg-light: #f8f9fa;
    --text-dark: #333333;
    --accent: #63C3D7;
    --white: #ffffff;
}

footer a {
    text-decoration: none;
    color: white;
}

body {
    font-family: 'Sora', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    width: 100%;
    position: relative;
    padding-top: 70px;
    /* Offset for fixed navbar */
}

html {
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
}

.text-accent {
    color: var(--accent) !important;
}

/* Typography Overrides */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.bg-light-purple {
    background-color: #EEE5F3 !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

/* Navbar */
.navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
    transition: all 0.3s;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s;
}

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

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #163275;
    border-color: #163275;
    transform: translateY(-2px);
}

.btn-success {
    background-color: #25D366;
    /* WhatsApp Green */
    border-color: #25D366;
    color: white;
}

.btn-success:hover {
    background-color: #1ebc57;
    border-color: #1ebc57;
    transform: translateY(-2px);
}

/* Hero Section */
.bg-gradient-hero {
    min-height: 90vh;
    /* A Dobra de Ouro */
    padding: 80px 0;
}

.pulse-btn {
    animation: pulse-blue 2s infinite;
    box-shadow: 0 0 0 0 rgba(28, 63, 146, 0.7);
}

@keyframes pulse-blue {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(28, 63, 146, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(28, 63, 146, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(28, 63, 146, 0);
    }
}

.hero-img {
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s;
}

.hero-img:hover {
    transform: translateY(-5px);
}

/* Social Proof Icons */
.fa-laravel {
    color: #FF2D20;
}

.fa-bootstrap {
    color: #7952B3;
}

.fa-database {
    color: #00758F;
}

.fa-google {
    color: #4285F4;
}

.fa-bolt {
    color: #F4B400;
}

.fa-flutter {
    color: #02569B;
}

.fa-figma {
    color: #F24E1E;
}

.fa-apple {
    color: #000000;
}

.fa-android {
    color: #3DDC84;
}

.fa-python {
    color: #3776AB;
}

.text-oracle-red {
    color: #C74634;
}

/* Differentiators */
.feature-box {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-box:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.ls-2 {
    letter-spacing: 2px;
}

/* FAQ Accordion */
.accordion-item {
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.accordion-button {
    font-size: 1.1rem;
    padding: 1.5rem;
    background-color: transparent;
    color: var(--text-dark);
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary);
    background-color: transparent;
    font-weight: 700;
}

.accordion-body {
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

/* Footer */
footer {
    background-color: var(--primary) !important;
}

.badge {
    background-color: #B5136D !important;
}

.hover-white:hover {
    color: white !important;
    opacity: 1 !important;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .bg-gradient-hero {
        text-align: center;
        padding-top: 40px;
    }

    .hero-img {
        margin-top: 3rem;
        max-width: 100%;
    }

    .display-4 {
        font-size: 2.5rem;
    }

    footer {
        text-align: center;
    }

    footer .text-md-start,
    footer .text-md-end {
        text-align: center !important;
    }

    footer .badge {
        display: inline-block;
        margin-top: 1rem;
        white-space: normal;
        /* Allow text wrap */
        line-height: 1.4;
    }
}

@media (max-width: 576px) {
    #hero h1 {
        font-size: 2rem;
    }

    .navbar-brand {
        font-size: 1.25rem;
    }

    .btn-lg {
        width: 100%;
        /* Full width buttons on very small screens */
    }
}

/* Full height sections */
#diferenciais,
#precos,
#faq,
#dores-mercado,
#processo {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Pain Points Section */
.pain-point-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.pain-point-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.border-primary {
    border-color: var(--primary) !important;
}

/* Process Section */
.process-step {
    position: relative;
    padding: 20px;
    z-index: 1;
}

.icon-circle {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary) 0%, #2a5298 100%);
    box-shadow: 0 10px 20px rgba(28, 63, 146, 0.2);
    transition: all 0.4s ease;
}

.process-step:hover .icon-circle {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(28, 63, 146, 0.3);
}

@media (min-width: 992px) {}