/* General Styles */
:root {
    /* Main Colors */
    --primary-color: #2c3e50;    /* Dark Blue */
    --secondary-color: #34495e;  /* Slate Blue */
    --accent-color: #3498db;     /* Bright Blue */
    --gold-color: #e74c3c;       /* Vibrant Red */
    --light-color: #ffffff;      /* White */
    --dark-color: #1a1a2e;       /* Deep Dark */
    --gray-color: #95a5a6;       /* Medium Gray */
    --success-color: #2ecc71;    /* Green */
    --light-bg: #f8f9fa;         /* Light Background */
    --light-accent: #ecf0f1;     /* Light Accent */
    
    /* RGB Values for Opacity */
    --primary-color-rgb: 44, 62, 80;
    --secondary-color-rgb: 52, 73, 94;
    --accent-color-rgb: 52, 152, 219;
    --gold-color-rgb: 231, 76, 60;
    --dark-color-rgb: 26, 26, 46;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--primary-color);
    line-height: 1.6;
    background-color: var(--light-bg);
}

/* Header Styles — apenas barra de navegação fixa, não cabeçalhos de seção */
header.fixed-top,
.site-header {
    transition: all 0.3s ease;
    background: rgba(var(--primary-color-rgb), 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

header.fixed-top.scrolled,
.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(26, 35, 126, 0.2);
}

.navbar {
    padding: 15px 0;
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-nav .nav-item {
    position: relative;
    margin: 0 5px;
}

.navbar-nav .nav-link {
    color: var(--light-color);
    opacity: 0.9;
    font-weight: 500;
    padding: 8px 15px !important;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--gold-color);
    opacity: 1;
}

.navbar-nav .nav-link.active {
    color: var(--gold-color) !important;
    background: rgba(255, 193, 7, 0.15);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar-nav .btn-primary {
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: var(--gold-color);
    border-color: var(--gold-color);
    color: var(--light-color);
}

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

.navbar-toggler {
    border: none;
    padding: 0;
}

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

.navbar-toggler-icon {
    width: 24px;
    height: 24px;
    background-image: none;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: 6px;
}

.navbar-toggler-icon::after {
    bottom: 6px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 11px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    bottom: 11px;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(26, 35, 126, 0.98);
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        margin-top: 15px;
    }

    .navbar-nav .nav-link {
        padding: 10px 15px !important;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar-nav .btn-primary {
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float .whatsapp-icon {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float .whatsapp-icon i {
        font-size: 30px;
    }
    
    .whatsapp-float .whatsapp-text {
        display: none;
    }
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    color: var(--light-color);
    padding: calc(110px + 38px) 0 5rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.site-header--topbar-hidden + main .hero {
    padding-top: 110px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(145deg, #0a101f 0%, #142d4a 38%, #163a56 68%, #1a5276 100%);
}

.hero__gradient::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(8, 14, 28, 0.82) 0%,
        rgba(8, 14, 28, 0.55) 42%,
        rgba(8, 14, 28, 0.15) 68%,
        transparent 100%
    );
}

.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 100%);
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    animation: heroOrbFloat 12s ease-in-out infinite;
}

.hero__orb--1 {
    width: 420px;
    height: 420px;
    background: rgba(52, 152, 219, 0.22);
    top: -10%;
    right: -5%;
}

.hero__orb--2 {
    width: 320px;
    height: 320px;
    background: rgba(46, 204, 113, 0.2);
    bottom: 5%;
    left: -8%;
    animation-delay: -4s;
}

.hero__orb--3 {
    width: 200px;
    height: 200px;
    background: rgba(241, 196, 15, 0.15);
    top: 40%;
    left: 30%;
    animation-delay: -8s;
}

@keyframes heroOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -25px) scale(1.05); }
    66% { transform: translate(-15px, 15px) scale(0.95); }
}

.hero__container {
    position: relative;
    z-index: 2;
}

.hero__row {
    min-height: calc(100vh - 180px);
}

.hero__content {
    padding: 1rem 0;
}

[data-hero-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--hero-delay, 0s);
}

[data-hero-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #f8fafc;
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    padding: 0.4rem 1rem 0.4rem 0.75rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.hero__badge-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2ecc71;
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.6);
    animation: heroPulse 2s ease-out infinite;
}

@keyframes heroPulse {
    0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.6); }
    70% { box-shadow: 0 0 0 10px rgba(46, 204, 113, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

.hero__title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.hero__highlight {
    color: #b8e8ff;
    background: linear-gradient(135deg, #d4eeff 0%, #a8f0c8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.45));
}

.hero__subtitle {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
    max-width: 540px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.hero__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.hero__pills li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #f1f5f9;
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.hero__pills li:hover {
    background: rgba(15, 23, 42, 0.65);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.hero__pills i {
    color: #6ee7a8;
    font-size: 0.8rem;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 2.5rem;
}

.hero__btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.34, 1.3, 0.64, 1), box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.hero__btn--primary {
    color: #fff;
    background: linear-gradient(135deg, #3498db 0%, #2471a3 100%);
    border: none;
    box-shadow: 0 8px 28px rgba(52, 152, 219, 0.45);
}

.hero__btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-20deg);
    transition: left 0.55s ease;
}

.hero__btn--primary:hover .hero__btn-shine {
    left: 130%;
}

.hero__btn--primary:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 36px rgba(52, 152, 219, 0.5);
}

.hero__btn--primary i {
    transition: transform 0.3s ease;
}

.hero__btn--primary:hover i {
    transform: translateX(4px);
}

.hero__btn--ghost {
    color: #ffffff;
    background: rgba(15, 23, 42, 0.4);
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(8px);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.hero__btn--ghost:hover {
    color: #ffffff;
    background: rgba(15, 23, 42, 0.6);
    border-color: rgba(255, 255, 255, 0.65);
    transform: translateY(-3px);
}

.hero__stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem 1.25rem;
}

.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.hero__stat strong {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
}

.hero__stat span {
    font-size: 0.78rem;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero__stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.28);
}

.hero__visual-col {
    position: relative;
}

.hero__visual {
    --hero-tilt-x: 0deg;
    --hero-tilt-y: 0deg;
    --hero-parallax-x: 0px;
    --hero-parallax-y: 0px;
    position: relative;
    perspective: 1200px;
    transform-style: preserve-3d;
    padding: 2rem 1rem;
}

.hero__visual-glow {
    position: absolute;
    inset: 10% 5%;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.35) 0%, transparent 65%);
    filter: blur(30px);
    z-index: 0;
    animation: heroGlowPulse 4s ease-in-out infinite;
}

@keyframes heroGlowPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.hero__mockup {
    position: relative;
    z-index: 2;
    border-radius: 1rem;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    transform: rotateX(var(--hero-tilt-x)) rotateY(var(--hero-tilt-y)) translate(var(--hero-parallax-x), var(--hero-parallax-y));
    transition: box-shadow 0.4s ease;
}

.hero__visual:hover .hero__mockup {
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(52, 152, 219, 0.15);
}

.hero__mockup-bar {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1rem;
    background: rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero__mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.hero__mockup-dot:nth-child(1) { background: #e74c3c; }
.hero__mockup-dot:nth-child(2) { background: #f1c40f; }
.hero__mockup-dot:nth-child(3) { background: #2ecc71; }

.hero__mockup-url {
    margin-left: auto;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.06);
    padding: 0.2rem 0.75rem;
    border-radius: 999px;
}

.hero__mockup-screen {
    overflow: hidden;
    line-height: 0;
}

.hero__image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.hero__visual:hover .hero__image {
    transform: scale(1.03);
}

.hero__float-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border-radius: 0.85rem;
    padding: 0.75rem 1rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    animation: heroCardFloat 5s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero__float-card:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.hero__float-card i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.6rem;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.hero__float-card--1 {
    top: 8%;
    left: -4%;
    animation-delay: 0s;
}

.hero__float-card--1 i {
    background: rgba(52, 152, 219, 0.15);
    color: var(--accent-color);
}

.hero__float-card--2 {
    bottom: 12%;
    right: -4%;
    animation-delay: -2.5s;
}

.hero__float-card--2 i {
    background: rgba(46, 204, 113, 0.15);
    color: var(--success-color);
}

.hero__float-card small {
    display: block;
    font-size: 0.7rem;
    color: var(--gray-color);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hero__float-card strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.hero__scroll {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.25s ease;
    z-index: 3;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.hero__scroll:hover {
    color: #ffffff;
}

.hero__scroll-icon {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.55);
    border-radius: 12px;
    position: relative;
}

.hero__scroll-icon::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    animation: heroScrollWheel 2s ease-in-out infinite;
}

@keyframes heroScrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

@media (max-width: 991.98px) {
    .hero {
        padding-bottom: 4rem;
        min-height: auto;
    }

    .hero__gradient::after {
        background: linear-gradient(
            180deg,
            rgba(8, 14, 28, 0.78) 0%,
            rgba(8, 14, 28, 0.5) 55%,
            rgba(8, 14, 28, 0.25) 100%
        );
    }

    .hero__row {
        min-height: auto;
    }

    .hero__content {
        text-align: center;
    }

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__pills {
        justify-content: center;
    }

    .hero__cta {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__visual {
        margin-top: 2rem;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero__float-card--1 {
        left: 0;
        top: 4%;
    }

    .hero__float-card--2 {
        right: 0;
        bottom: 6%;
    }

    .hero__scroll {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .hero__btn {
        width: 100%;
    }

    .hero__stat-divider {
        display: none;
    }

    .hero__stats {
        justify-content: space-around;
        width: 100%;
    }

    .hero__float-card {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero__orb,
    .hero__float-card,
    .hero__visual-glow,
    .hero__scroll-icon::after,
    .hero__badge-pulse {
        animation: none;
    }

    [data-hero-animate] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero__mockup {
        transform: none;
    }
}

/* Legacy banner aliases (outras páginas) */
.banner-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
        var(--primary-color) 0%,
        var(--secondary-color) 50%,
        var(--accent-color) 100%
    );
    color: var(--light-color);
    padding: calc(120px + 38px) 0 80px;
}

.site-header--topbar-hidden + main .hero,
.site-header--topbar-hidden + main .banner-section {
    padding-top: 110px;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.banner-section .container {
    position: relative;
    z-index: 2;
}

.banner-section h1 {
    color: var(--light-color);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    display: inline-block;
    animation: fadeInUp 1s ease-out;
}

.banner-section h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold-color);
    transition: width 0.6s ease;
}

.banner-section:hover h1::after {
    width: 100%;
}

.banner-section .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s backwards;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.banner-section .btn-primary {
    background: var(--gold-color);
    border-color: var(--gold-color);
    color: var(--light-color);
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(var(--gold-color-rgb), 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.banner-section .btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.banner-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--gold-color-rgb), 0.4);
    background: #c0392b;
    border-color: #c0392b;
}

.banner-section .btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.banner-section .btn-primary i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.banner-section .btn-primary:hover i {
    transform: translateX(5px) rotate(10deg);
}

.banner-section .img-fluid {
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    transition: all 0.4s ease;
    border-radius: 10px;
    border: 5px solid rgba(255, 255, 255, 0.1);
}

.banner-section .img-fluid:hover {
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Feature Cards */
.feature-card {
    background: var(--light-color);
    border: 1px solid rgba(var(--primary-color-rgb), 0.1);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    background: var(--light-color);
    border-color: var(--gold-color);
}

.feature-card i {
    color: var(--gold-color);
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--light-color);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    z-index: 1;
}

footer .container {
    position: relative;
    z-index: 2;
}

footer h5 {
    color: var(--light-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold-color);
    transition: width 0.3s ease;
}

footer h5:hover::after {
    width: 100%;
}

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

footer ul li {
    margin-bottom: 0.8rem;
    color: #fff;
}

footer ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

footer ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-color);
    transition: width 0.3s ease;
}

footer ul li a:hover {
    color: var(--light-color);
    transform: translateX(5px);
}

footer ul li a:hover::after {
    width: 100%;
}

footer .social-links a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    margin-right: 10px;
}

footer .social-links a:hover {
    color: var(--light-color);
    background: var(--gold-color);
    transform: translateY(-3px);
}

footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0;
}

footer .text-center p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    footer {
        padding: 60px 0 30px;
    }
    
    footer h5 {
        margin-top: 30px;
    }
    
    footer .social-links {
        margin-top: 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-section .col-lg-6:first-child {
    animation: fadeInUp 1s ease-out;
}

.feature-card {
    animation: fadeInUp 0.5s ease-out;
    animation-fill-mode: both;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero {
        text-align: center;
    }

    .banner-section {
        text-align: center;
    }
    
    .banner-section img {
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .navbar-brand img {
        height: 30px;
    }
    
    .hero__title {
        font-size: 2.25rem;
    }

    .banner-section h1 {
        font-size: 2.5rem;
    }
}

/* Additional Industrial Elements */
.feature-card h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin: 1rem 0;
}

.feature-card p {
    color: var(--gray-color);
}

/* Metallic Button Style */
.btn-lg {
    background: linear-gradient(45deg, var(--accent-color), #c0392b);
    border: none;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-lg:hover {
    background: linear-gradient(45deg, #c0392b, var(--accent-color));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
   
    color: var(--light-color);
}

.whatsapp-float .whatsapp-icon {
    width: 60px;
    height: 60px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 200, 83, 0.2);
    transition: all 0.3s ease;
}

.whatsapp-float .whatsapp-icon i {
    color: var(--light-color);
    font-size: 35px;
}

.whatsapp-float .whatsapp-text {
    background: var(--light-color);
    padding: 8px 15px;
    border-radius: 20px;
    margin-top: 10px;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
/*    background: #c0392b;*/
}

.whatsapp-float:hover .whatsapp-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 200, 83, 0.3);
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float .whatsapp-icon {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float .whatsapp-icon i {
        font-size: 30px;
    }
    
    .whatsapp-float .whatsapp-text {
        display: none;
    }
}

/* Recursos Section */
#recursos .feature-card {
    background: var(--light-bg);
    border: none;
    transition: all 0.3s ease;
}

#recursos .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

#recursos .feature-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 1rem 0;
}

#recursos .feature-card p {
    color: var(--gray-color);
    font-size: 1rem;
    margin-bottom: 0;
}

#recursos .feature-card i {
    transition: all 0.3s ease;
}

#recursos .feature-card:hover i {
    transform: scale(1.1);
}

/* Apresentação Section */
#apresentacao .feature-card {
    background: var(--light-color);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

#apresentacao .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

#apresentacao .feature-card i {
    transition: all 0.3s ease;
}

#apresentacao .feature-card:hover i {
    color: var(--gold-color) !important;
    transform: scale(1.1);
}

#apresentacao .feature-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 1rem 0;
}

#apresentacao .feature-card p {
    color: var(--gray-color);
    font-size: 1rem;
    margin-bottom: 1rem;
}

#apresentacao .feature-card ul li {
    color: var(--gray-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

#apresentacao .feature-card ul li i {
    color: var(--success-color);
    transition: all 0.3s ease;
}

#apresentacao .feature-card ul li:hover i {
    color: var(--gold-color);
    transform: scale(1.1);
}

/* Benefícios Adicionais */
.benefit-item {
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item i {
    transition: all 0.3s ease;
}

.benefit-item:hover i {
    color: var(--gold-color) !important;
    transform: scale(1.1);
}

.benefit-item h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 1rem 0;
}

.benefit-item p {
    color: var(--gray-color);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* CTA Box */
.cta-box {
    position: relative;
    overflow: hidden;
    background: var(--light-color);
    border: 1px solid var(--gold-color);
    z-index: 1;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/pattern.svg') no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.cta-box .btn-light,
.cta-box .btn-primary {
    position: relative;
    z-index: 2;
    background: var(--primary-color);
    color: var(--light-color);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-box .btn-light:hover,
.cta-box .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    background: var(--gold-color);
    color: var(--light-color);
    text-decoration: none;
}

.cta-box .btn-light i,
.cta-box .btn-primary i {
    transition: all 0.3s ease;
}

.cta-box .btn-light:hover i,
.cta-box .btn-primary:hover i {
    transform: translateX(3px) rotate(10deg);
}

/* FAQ Section */
#faq .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

#faq .accordion-button {
    background-color: var(--light-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 1.25rem;
    border: none;
    transition: all 0.3s ease;
}

#faq .accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: var(--light-color);
}

#faq .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

#faq .accordion-button::after {
    background-size: 1.2rem;
    transition: all 0.3s ease;
}

#faq .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

#faq .accordion-body {
    background-color: var(--light-color);
    color: var(--primary-color);
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

#faq .accordion-button:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

#faq .accordion-button:hover::after {
    filter: brightness(0) invert(1);
}

/* Pricing Cards */
.pricing-card {
    background: var(--light-color);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary-color);
    color: var(--light-color);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-header p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.pricing-features {
    padding: 2rem;
}

.pricing-features ul li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--gray-color);
}

.pricing-features ul li i {
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.pricing-features ul li i.fa-plus {
    color: var(--primary-color);
}

.pricing-footer {
    padding: 1.5rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-footer .btn {
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.pricing-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Integration Cards */
.integration-card {
    background: var(--light-color);
    border: 1px solid rgba(var(--primary-color-rgb), 0.1);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.integration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.integration-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: var(--light-color);
    border-color: var(--gold-color);
}

.integration-card:hover::before {
    opacity: 0.05;
}

.integration-icon {
    font-size: 2.5rem;
    color: var(--gold-color);
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
    display: inline-block;
    padding: 1rem;
    border-radius: 50%;
    background: rgba(var(--gold-color-rgb), 0.1);
}

.integration-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-color), var(--accent-color));
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.integration-card:hover .integration-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--light-color);
}

.integration-card:hover .integration-icon::before {
    opacity: 1;
}

/* Pulse Animation */
@keyframes iconPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--gold-color-rgb), 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(var(--gold-color-rgb), 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(var(--gold-color-rgb), 0);
    }
}

.integration-card:hover .integration-icon {
    animation: iconPulse 1.5s infinite;
}

/* Feature Icons Animation */
.integration-features li i {
    color: var(--gold-color);
    margin-right: 0.5rem;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.integration-features li:hover i {
    transform: scale(1.2) rotate(10deg);
    color: var(--accent-color);
}

.integration-features li i::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gold-color);
    border-radius: 50%;
    opacity: 0.1;
    transform: scale(0);
    transition: all 0.3s ease;
}

.integration-features li:hover i::after {
    transform: scale(2);
    opacity: 0;
}

/* Content Animation */
.integration-content {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.integration-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.integration-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s ease;
}

.integration-card:hover .integration-content h3::after {
    width: 100%;
}

.integration-features li {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    padding: 0.3rem 0;
}

.integration-card:hover .integration-features li {
    transform: translateX(10px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .integration-card {
        padding: 1.5rem;
    }

    .integration-icon {
        font-size: 2rem;
        padding: 0.8rem;
    }

    .integration-content h3 {
        font-size: 1.3rem;
    }
}

/* Custom Integrations Section */
.custom-integrations {
    background: var(--light-accent);
    position: relative;
    overflow: hidden;
}

.custom-integration-content {
    position: relative;
    z-index: 2;
}

.custom-integration-content .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--gold-color), var(--accent-color));
    box-shadow: 0 4px 15px rgba(var(--gold-color-rgb), 0.3);
    color: var(--light-color);
}

.feature-item {
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 10px;
    background: var(--light-color);
    border: 1px solid rgba(var(--primary-color-rgb), 0.1);
    color: var(--primary-color);
}

.feature-item:hover {
    transform: translateX(10px);
    background: var(--light-color);
    box-shadow: 0 5px 15px rgba(var(--gold-color-rgb), 0.2);
    border-color: var(--gold-color);
}

.feature-item i {
    transition: all 0.3s ease;
    color: var(--gold-color);
}

.feature-item:hover i {
    transform: scale(1.1) rotate(5deg);
    color: var(--accent-color);
}

.custom-integration-image {
    position: relative;
    padding: 2rem;
}

.custom-integration-image img {
    transition: all 0.4s ease;
    border: 10px solid white;
    box-shadow: 0 10px 30px rgba(var(--gold-color-rgb), 0.15);
}

.custom-integration-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(var(--gold-color-rgb), 0.25);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(var(--gold-color-rgb), 0.15);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(var(--gold-color-rgb), 0.1);
}

.floating-card i {
    color: var(--gold-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.floating-card:hover i {
    transform: scale(1.2) rotate(10deg);
    color: var(--accent-color);
}

.floating-card span {
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.floating-card:hover span {
    color: var(--gold-color);
}

.card-1 {
    top: 10%;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 0;
    animation-delay: 2s;
}

.card-3 {
    bottom: 10%;
    left: 20%;
    animation-delay: 4s;
}

.cta-box {
    border: 1px solid rgba(var(--gold-color-rgb), 0.2);
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
}

.cta-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(var(--gold-color-rgb), 0.2);
    border-color: var(--gold-color);
}

.cta-box .btn-primary {
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--gold-color), var(--accent-color));
    border: none;
    box-shadow: 0 4px 15px rgba(var(--gold-color-rgb), 0.3);
}

.cta-box .btn-primary:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(var(--gold-color-rgb), 0.4);
}

.cta-box .btn-primary i {
    transition: all 0.3s ease;
}

.cta-box .btn-primary:hover i {
    transform: translateX(3px) rotate(10deg);
}

/* Integration Icons Animation */
.integration-icon {
    font-size: 2.5rem;
    color: var(--gold-color);
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
    display: inline-block;
    padding: 1rem;
    border-radius: 50%;
    background: rgba(var(--gold-color-rgb), 0.1);
}

.integration-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-color), var(--accent-color));
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.integration-card:hover .integration-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--light-color);
}

.integration-card:hover .integration-icon::before {
    opacity: 1;
}

/* Pulse Animation */
@keyframes iconPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--gold-color-rgb), 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(var(--gold-color-rgb), 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(var(--gold-color-rgb), 0);
    }
}

.integration-card:hover .integration-icon {
    animation: iconPulse 1.5s infinite;
}

/* Feature Icons Animation */
.integration-features li i {
    color: var(--gold-color);
    margin-right: 0.5rem;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.integration-features li:hover i {
    transform: scale(1.2) rotate(10deg);
    color: var(--accent-color);
}

.integration-features li i::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gold-color);
    border-radius: 50%;
    opacity: 0.1;
    transform: scale(0);
    transition: all 0.3s ease;
}

.integration-features li:hover i::after {
    transform: scale(2);
    opacity: 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .custom-integration-image {
        margin-top: 3rem;
    }
    
    .floating-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .custom-integration-content h2 {
        font-size: 2rem;
    }
    
    .feature-item {
        padding: 0.8rem;
    }
}

/* Text Colors */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
}

p, li {
    color: var(--secondary-color);
}

/* Icons */
.feature-item i,
.integration-icon,
.floating-card i {
    color: var(--gold-color);
}

/* Hover Effects */
.btn-primary {
    background: var(--gold-color);
    border-color: var(--gold-color);
    color: var(--light-color);
}

.btn-primary:hover {
    background: #c0392b;
    border-color: #c0392b;
}

/* Badges */
.badge {
    background: var(--gold-color);
    color: var(--light-color);
}

/* Links */
a {
    color: var(--accent-color);
}

a:hover {
    color: var(--gold-color);
}

/* Form Elements */
input, textarea, select {
    background: var(--light-color);
    border: 1px solid rgba(var(--primary-color-rgb), 0.1);
    color: var(--primary-color);
}

input:focus, textarea:focus, select:focus {
    background: var(--light-color);
    border-color: var(--gold-color);
    color: var(--primary-color);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-color);
}

/* Process Timeline */
.process-timeline {
    position: relative;
    padding: 40px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, 
        var(--primary-color) 0%,
        var(--secondary-color) 50%,
        var(--accent-color) 100%
    );
    transform: translateX(-50%);
}

.process-step {
    position: relative;
    padding-left: 100px;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    height: 100px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.process-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.process-step:hover .process-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.process-step:hover .process-icon i {
    transform: scale(1.1);
    color: var(--gold-color);
}

.process-content {
    background: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.process-step:hover .process-content {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.process-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.process-content p {
    color: var(--gray-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.process-content ul li {
    color: var(--gray-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.process-content ul li i {
    color: var(--gold-color);
    margin-right: 10px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.process-step:hover ul li {
    transform: translateX(5px);
}

.process-step:hover ul li i {
    transform: scale(1.2);
}

/* Responsive Process Timeline */
@media (max-width: 768px) {
    .process-timeline::before {
        left: 40px;
    }
    
    .process-step {
        padding-left: 80px;
    }
    
    .process-icon {
        width: 80px;
        height: 80px;
    }
    
    .process-icon i {
        font-size: 2rem;
    }
    
    .process-content {
        padding: 20px;
    }
    
    .process-content h3 {
        font-size: 1.3rem;
    }
} 
/* Cabeçalhos */
.text_seo h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    border-left: 5px solid #3498db;
    padding-left: 10px;
  }
  
  .text_seo h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
  }
  
  .text_seo h4 {
    font-size: 1.2rem;
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
    color: #34495e;
  }
  
  /* Parágrafos */
  .text_seo p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
    text-align: justify;
  }
  
  /* Separador horizontal */
  .text_seo hr {
    border: 0;
    border-top: 1px solid #ddd;
    margin: 2rem 0;
  }
  
  /* Listas não ordenadas */
  .text_seo ul {
    margin-bottom: 1.2rem;
    padding-left: 20px;
    list-style-type: disc;
  }
  
  .text_seo ul li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
  }
  
  /* Tabelas */
  .text_seo table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
  }
  
  .text_seo table th,
  .text_seo table td {
    border: 1px solid #ccc;
    padding: 0.75rem;
    text-align: left;
  }
  
  .text_seo table th {
    background-color: #f2f2f2;
    font-weight: bold;
  }
  
  /* Links internos ou externos */
  .text_seo a {
    color: #3498db;
    text-decoration: none;
  }
  
  .text_seo a:hover {
    text-decoration: underline;
  }

/* Index — utilitários e seções profissionais */
.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    z-index: 10000;
    padding: 0.75rem 1rem;
    background: var(--primary-color);
    color: var(--light-color);
    border-radius: 0.25rem;
    text-decoration: none;
    font-weight: 500;
}

.skip-link:focus {
    top: 1rem;
}

.icon-accent {
    color: var(--accent-color);
}

.section-recursos {
    background: var(--primary-color);
}

.cta-box--gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
}

.cta-box--gradient::before {
    display: none;
}

.hero-cta-group .btn-outline-light {
    border-width: 2px;
}

.hero-cta-group .btn-outline-light:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

.trust-strip {
    position: relative;
    z-index: 4;
    margin-top: -3.5rem;
    padding: 0 0 4.5rem;
}

.trust-strip__bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #ffffff;
    border: 1px solid rgba(44, 62, 80, 0.09);
    border-radius: 1rem;
    box-shadow:
        0 4px 6px rgba(15, 23, 42, 0.04),
        0 24px 48px rgba(15, 23, 42, 0.1);
    overflow: hidden;
}

.trust-strip__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 1.75rem;
    border-right: 1px solid rgba(44, 62, 80, 0.08);
    transition: background-color 0.2s ease;
}

.trust-strip__item:last-child {
    border-right: none;
}

.trust-strip__item:hover {
    background-color: #f8fafc;
}

.trust-strip__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.65rem;
    background: rgba(52, 152, 219, 0.1);
    color: #2471a3;
    font-size: 1.05rem;
}

.trust-strip__content {
    min-width: 0;
}

.trust-strip__label {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
    margin: 0 0 0.2rem;
}

.trust-strip__desc {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #64748b;
    margin: 0;
}

[data-reveal] {
    opacity: 0;
    translate: 0 24px;
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
                translate 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0s);
}

[data-reveal].is-revealed {
    opacity: 1;
    translate: 0 0;
}

@media (max-width: 991.98px) {
    .trust-strip {
        margin-top: -2rem;
        padding-bottom: 3.5rem;
    }

    .trust-strip__bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-strip__item {
        border-right: none;
        border-bottom: 1px solid rgba(44, 62, 80, 0.08);
    }

    .trust-strip__item:nth-child(odd) {
        border-right: 1px solid rgba(44, 62, 80, 0.08);
    }

    .trust-strip__item:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (max-width: 575.98px) {
    .trust-strip__bar {
        grid-template-columns: 1fr;
    }

    .trust-strip__item,
    .trust-strip__item:nth-child(odd) {
        border-right: none;
        border-bottom: 1px solid rgba(44, 62, 80, 0.08);
    }

    .trust-strip__item:last-child {
        border-bottom: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1;
        translate: none;
        transition: none;
    }
}

/* Advantages Section */
.advantages {
    padding: 5rem 0;
    background: var(--light-bg);
}

.advantages__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.5rem;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
}

.advantages__eyebrow {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1a6fa8;
    margin-bottom: 0.75rem;
}

.advantages__title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.advantages__lead {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #475569;
    margin: 0;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.advantages__pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
    align-items: stretch;
}

.advantages__pillar {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(44, 62, 80, 0.08);
    border-radius: 1.25rem;
    padding: 2rem 1.75rem 1.75rem;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.05);
    transition: translate 0.35s cubic-bezier(0.34, 1.2, 0.64, 1),
                scale 0.35s cubic-bezier(0.34, 1.2, 0.64, 1),
                box-shadow 0.35s ease,
                border-color 0.35s ease;
    overflow: hidden;
}

.advantages__pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.advantages__pillar:hover {
    translate: 0 -8px;
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.1);
    border-color: rgba(52, 152, 219, 0.18);
}

.advantages__pillar:hover::before {
    opacity: 1;
}

.advantages__pillar--featured {
    border-color: rgba(52, 152, 219, 0.22);
    box-shadow: 0 16px 48px rgba(52, 152, 219, 0.12);
    scale: 1.02;
}

.advantages__pillar--featured::before {
    opacity: 1;
    background: linear-gradient(90deg, var(--accent-color), var(--success-color));
}

.advantages__pillar--featured:hover {
    scale: 1.02;
    translate: 0 -8px;
}

.advantages__pillar-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    background: linear-gradient(135deg, var(--accent-color), #2471a3);
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
}

.advantages__pillar-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(44, 62, 80, 0.06);
    margin-bottom: -0.5rem;
    letter-spacing: -0.04em;
    transition: color 0.35s ease;
}

.advantages__pillar:hover .advantages__pillar-num {
    color: rgba(52, 152, 219, 0.12);
}

.advantages__pillar-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
    transition: transform 0.35s cubic-bezier(0.34, 1.3, 0.64, 1);
}

.advantages__pillar:hover .advantages__pillar-icon {
    transform: scale(1.1) rotate(-4deg);
}

.advantages__pillar-icon--blue {
    background: rgba(52, 152, 219, 0.12);
    color: #2471a3;
}

.advantages__pillar-icon--green {
    background: rgba(46, 204, 113, 0.12);
    color: #1e8449;
}

.advantages__pillar-icon--cyan {
    background: rgba(26, 188, 156, 0.12);
    color: #117a65;
}

.advantages__pillar-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.65rem;
}

.advantages__pillar-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #5a6c7d;
    margin-bottom: 1.25rem;
}

.advantages__list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(44, 62, 80, 0.08);
    padding-top: 1.15rem;
}

.advantages__list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.875rem;
    color: var(--secondary-color);
    padding: 0.35rem 0;
    transition: transform 0.25s ease, color 0.25s ease;
}

.advantages__pillar:hover .advantages__list li {
    transform: translateX(3px);
}

.advantages__list li i {
    color: var(--success-color);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.advantages__extras {
    margin-bottom: 3.5rem;
}

.advantages__extras-title {
    text-align: center;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.75rem;
}

.advantages__benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.advantages__benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #ffffff;
    border: 1px solid rgba(44, 62, 80, 0.08);
    border-radius: 1rem;
    padding: 1.25rem 1.35rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.advantages__benefit:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    border-color: rgba(52, 152, 219, 0.15);
}

.advantages__benefit-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: rgba(52, 152, 219, 0.1);
    color: var(--accent-color);
    font-size: 1.1rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.advantages__benefit:hover .advantages__benefit-icon {
    transform: rotate(-5deg) scale(1.08);
    background: rgba(52, 152, 219, 0.16);
}

.advantages__benefit h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.advantages__benefit p {
    font-size: 0.875rem;
    line-height: 1.55;
    color: #5a6c7d;
    margin: 0;
}

.advantages__cta {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 45%, #1a5276 100%);
    padding: 3rem 2rem;
    text-align: center;
}

.advantages__cta-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(52, 152, 219, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(46, 204, 113, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.advantages__cta-content {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 0 auto;
}

.advantages__cta-title {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.advantages__cta-text {
    font-size: 1.05rem;
    color: #e2e8f0;
    line-height: 1.65;
    margin-bottom: 1.75rem;
}

.advantages__cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
}

.advantages__cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.34, 1.3, 0.64, 1), box-shadow 0.3s ease, background 0.3s ease;
}

.advantages__cta-btn--primary {
    color: var(--primary-color);
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.advantages__cta-btn--primary:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
}

.advantages__cta-btn--primary i {
    transition: transform 0.3s ease;
}

.advantages__cta-btn--primary:hover i {
    transform: translateX(4px);
}

.advantages__cta-btn--ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.advantages__cta-btn--ghost:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.55);
    transform: translateY(-3px);
}

@media (max-width: 991.98px) {
    .advantages {
        padding: 3.5rem 0;
    }

    .advantages__pillars {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .advantages__pillar--featured {
        scale: none;
    }

    .advantages__pillar--featured:hover {
        translate: 0 -8px;
    }
}

@media (max-width: 575.98px) {
    .advantages__benefits {
        grid-template-columns: 1fr;
    }

    .advantages__cta-btn {
        width: 100%;
    }

    .advantages__pillar-badge {
        top: 1rem;
        right: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .advantages__pillar:hover,
    .advantages__pillar--featured:hover,
    .advantages__benefit:hover,
    .advantages__cta-btn:hover {
        translate: none;
        scale: none;
    }

    .advantages__pillar:hover .advantages__pillar-icon,
    .advantages__benefit:hover .advantages__benefit-icon {
        transform: none;
    }

    .advantages__pillar:hover .advantages__list li {
        transform: none;
    }
}

/* Features / Recursos Section */
.features {
    position: relative;
    padding: 5.5rem 0;
    overflow: hidden;
}

.features__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.features__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #0a101f 0%, #142d4a 40%, #163a56 100%);
}

.features__grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, black 15%, transparent 100%);
}

.features__container {
    position: relative;
    z-index: 1;
}

.features__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 2.5rem;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
}

.features__eyebrow {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7dd3fc;
    margin-bottom: 0.65rem;
}

.features__title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

.features__lead {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin: 0;
}

.features__filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    padding: 0.35rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.features__filter {
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.55rem 1.15rem;
    border-radius: 999px;
    cursor: pointer;
    transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.features__filter:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.features__filter.is-active {
    color: var(--primary-color);
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.features__filter:focus-visible {
    outline: 2px solid #7dd3fc;
    outline-offset: 2px;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    transition: opacity 0.3s ease;
}

.features__grid--empty {
    display: none;
}

.features__card {
    position: relative;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.15rem;
    padding: 1.75rem 1.5rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1),
                box-shadow 0.35s ease,
                opacity 0.35s ease,
                border-color 0.35s ease;
}

.features__card.is-hidden {
    display: none;
}

.features__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.25);
    border-color: rgba(52, 152, 219, 0.3);
}

.features__card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.85rem;
    font-size: 1.2rem;
    margin-bottom: 1.1rem;
    transition: transform 0.35s cubic-bezier(0.34, 1.3, 0.64, 1);
}

.features__card:hover .features__card-icon {
    transform: scale(1.1) rotate(-4deg);
}

.features__card-icon--blue { background: rgba(52, 152, 219, 0.15); color: #2471a3; }
.features__card-icon--cyan { background: rgba(26, 188, 156, 0.15); color: #117a65; }
.features__card-icon--green { background: rgba(46, 204, 113, 0.15); color: #1e8449; }
.features__card-icon--indigo { background: rgba(93, 109, 126, 0.15); color: #2c3e50; }
.features__card-icon--purple { background: rgba(155, 89, 182, 0.15); color: #7d3c98; }
.features__card-icon--orange { background: rgba(230, 126, 34, 0.15); color: #ca6f1e; }
.features__card-icon--teal { background: rgba(22, 160, 133, 0.15); color: #117a65; }
.features__card-icon--gold { background: rgba(241, 196, 15, 0.18); color: #9a7d0a; }

.features__card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.features__card-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #5a6c7d;
    margin-bottom: 1rem;
}

.features__card-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-color);
    background: rgba(52, 152, 219, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
}

.features__empty {
    text-align: center;
    color: #cbd5e1;
    font-size: 1rem;
    margin-top: 2rem;
}

@media (max-width: 991.98px) {
    .features {
        padding: 4rem 0;
    }

    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features__filters {
        border-radius: 1rem;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .features__grid {
        grid-template-columns: 1fr;
    }

    .features__filter {
        flex: 1 1 calc(50% - 0.5rem);
        text-align: center;
        padding: 0.5rem 0.75rem;
        font-size: 0.8125rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .features__card:hover {
        transform: none;
    }

    .features__card:hover .features__card-icon {
        transform: none;
    }
}

/* Workflow / Processo Section */
.workflow {
    padding: 5.5rem 0;
    background: var(--light-bg);
}

.workflow__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
}

.workflow__eyebrow {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 0.65rem;
}

.workflow__title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.workflow__lead {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a6c7d;
    margin: 0;
}

.workflow__layout {
    max-width: 960px;
    margin: 0 auto;
}

.workflow__nav {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.workflow__nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 0.75rem 0.35rem;
    border: 1px solid rgba(44, 62, 80, 0.1);
    border-radius: 0.85rem;
    background: #ffffff;
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.workflow__nav-item:hover {
    transform: translateY(-3px);
    border-color: rgba(52, 152, 219, 0.25);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.workflow__nav-item.is-active {
    background: linear-gradient(135deg, var(--accent-color), #2471a3);
    border-color: transparent;
    box-shadow: 0 10px 28px rgba(52, 152, 219, 0.35);
}

.workflow__nav-item.is-active .workflow__nav-num,
.workflow__nav-item.is-active .workflow__nav-label {
    color: #ffffff;
}

.workflow__nav-num {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent-color);
    letter-spacing: 0.04em;
    transition: color 0.25s ease;
}

.workflow__nav-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-align: center;
    line-height: 1.2;
    transition: color 0.25s ease;
}

.workflow__progress {
    height: 4px;
    background: rgba(44, 62, 80, 0.1);
    border-radius: 999px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.workflow__progress-bar {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--accent-color), var(--success-color));
    border-radius: 999px;
    transition: width 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.workflow__panels {
    position: relative;
    min-height: 280px;
}

.workflow__panel {
    display: flex;
    align-items: flex-start;
    gap: 1.75rem;
    background: #ffffff;
    border: 1px solid rgba(44, 62, 80, 0.08);
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
    animation: workflowPanelIn 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.workflow__panel[hidden] {
    display: none !important;
}

@keyframes workflowPanelIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.workflow__panel-icon {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.1rem;
    font-size: 1.75rem;
}

.workflow__panel-icon--blue { background: rgba(52, 152, 219, 0.12); color: #2471a3; }
.workflow__panel-icon--green { background: rgba(46, 204, 113, 0.12); color: #1e8449; }
.workflow__panel-icon--cyan { background: rgba(26, 188, 156, 0.12); color: #117a65; }
.workflow__panel-icon--purple { background: rgba(155, 89, 182, 0.12); color: #7d3c98; }
.workflow__panel-icon--gold { background: rgba(241, 196, 15, 0.15); color: #9a7d0a; }
.workflow__panel-icon--teal { background: rgba(22, 160, 133, 0.12); color: #117a65; }

.workflow__panel-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.65rem;
}

.workflow__panel-text {
    font-size: 1rem;
    line-height: 1.65;
    color: #5a6c7d;
    margin-bottom: 1.25rem;
}

.workflow__panel-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem 1rem;
}

.workflow__panel-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.workflow__panel-list li i {
    color: var(--success-color);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.workflow__nav-item:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

@media (max-width: 991.98px) {
    .workflow {
        padding: 4rem 0;
    }

    .workflow__nav {
        display: flex;
        overflow-x: auto;
        gap: 0.65rem;
        padding-bottom: 0.5rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .workflow__nav-item {
        flex: 0 0 auto;
        min-width: 100px;
        scroll-snap-align: start;
    }

    .workflow__panel {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.75rem 1.5rem;
    }

    .workflow__panel-list {
        grid-template-columns: 1fr;
        text-align: left;
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .workflow__nav-item:hover {
        transform: none;
    }

    .workflow__panel {
        animation: none;
    }

    .workflow__progress-bar {
        transition: none;
    }
}

/* FAQ Section */
.faq {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 10%, rgba(52, 152, 219, 0.06) 0%, transparent 45%),
        radial-gradient(circle at 85% 90%, rgba(46, 204, 113, 0.04) 0%, transparent 45%);
    pointer-events: none;
}

.faq .container {
    position: relative;
    z-index: 1;
}

.faq__layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.4fr);
    gap: 3rem;
    align-items: start;
}

.faq__header {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    margin-bottom: 2rem;
}

.faq__eyebrow {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1a6fa8;
    margin-bottom: 0.75rem;
}

.faq__title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.faq__lead {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #475569;
    margin: 0;
}

.faq__help {
    background: #ffffff;
    border: 1px solid rgba(44, 62, 80, 0.09);
    border-radius: 1.25rem;
    padding: 1.75rem;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.faq__help-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.85rem;
    background: rgba(52, 152, 219, 0.12);
    color: #1a6fa8;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.faq__help-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.faq__help-text {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #64748b;
    margin-bottom: 1.25rem;
}

.faq__help-actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.faq__help-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, translate 0.25s ease;
}

.faq__help-btn--primary {
    background: #25d366;
    color: #ffffff;
    border: 1px solid transparent;
}

.faq__help-btn--primary:hover {
    background: #1ebe57;
    color: #ffffff;
    translate: 0 -1px;
}

.faq__help-btn--ghost {
    background: transparent;
    color: #1e293b;
    border: 1px solid rgba(44, 62, 80, 0.14);
}

.faq__help-btn--ghost:hover {
    background: #f8fafc;
    color: #1a6fa8;
    border-color: rgba(52, 152, 219, 0.35);
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq__item {
    background: #ffffff;
    border: 1px solid rgba(44, 62, 80, 0.08);
    border-radius: 1rem;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq__item.is-open {
    border-color: rgba(52, 152, 219, 0.28);
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.07);
}

.faq__item-heading {
    margin: 0;
}

.faq__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.15rem 1.25rem;
    border: none;
    background: transparent;
    text-align: left;
    cursor: pointer;
    color: #1e293b;
    transition: color 0.25s ease;
}

.faq__trigger:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: -2px;
}

.faq__item.is-open .faq__trigger {
    color: #1a6fa8;
}

.faq__trigger-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.7rem;
    font-size: 0.95rem;
    transition: scale 0.3s ease;
}

.faq__item.is-open .faq__trigger-icon {
    scale: 1.05;
}

.faq__trigger-icon--blue {
    background: rgba(52, 152, 219, 0.12);
    color: #2980b9;
}

.faq__trigger-icon--cyan {
    background: rgba(6, 182, 212, 0.12);
    color: #0891b2;
}

.faq__trigger-icon--green {
    background: rgba(46, 204, 113, 0.12);
    color: #27ae60;
}

.faq__trigger-icon--purple {
    background: rgba(155, 89, 182, 0.12);
    color: #8e44ad;
}

.faq__trigger-icon--gold {
    background: rgba(241, 196, 15, 0.15);
    color: #d68910;
}

.faq__trigger-icon--teal {
    background: rgba(26, 188, 156, 0.12);
    color: #16a085;
}

.faq__question {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.45;
}

.faq__chevron {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-top: -4px;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0.55;
}

.faq__item.is-open .faq__chevron {
    transform: rotate(-135deg);
    margin-top: 4px;
    opacity: 1;
}

.faq__panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq__item.is-open .faq__panel {
    grid-template-rows: 1fr;
}

.faq__panel[hidden] {
    display: none;
}

.faq__panel-inner {
    overflow: hidden;
}

.faq__answer {
    margin: 0;
    padding: 0 1.25rem 1.25rem 4.65rem;
    font-size: 0.975rem;
    line-height: 1.75;
    color: #64748b;
}

@media (max-width: 991.98px) {
    .faq {
        padding: 3.5rem 0;
    }

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

    .faq__header {
        text-align: center;
        margin-bottom: 0;
    }

    .faq__answer {
        padding-left: 1.25rem;
    }
}

@media (max-width: 575.98px) {
    .faq__trigger {
        gap: 0.75rem;
        padding: 1rem;
    }

    .faq__question {
        font-size: 0.9375rem;
    }

    .faq__trigger-icon {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .faq__panel {
        transition: none;
    }

    .faq__chevron,
    .faq__trigger-icon,
    .faq__help-btn {
        transition: none;
    }

    .faq__help-btn--primary:hover {
        translate: none;
    }
}

/* Page Hero (páginas internas) */
.page-hero {
    position: relative;
    padding: calc(var(--header-topbar-height, 38px) + var(--header-nav-height, 76px) + 3rem) 0 3.5rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 48%, #1a5276 100%);
    overflow: hidden;
}

.page-hero--compact {
    padding-bottom: 2.25rem;
}

.page-hero--compact .page-hero__title {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(52, 152, 219, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(46, 204, 113, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.page-hero__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7dd3fc;
    margin-bottom: 0.75rem;
}

.page-hero__title {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

.page-hero__lead {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #cbd5e1;
    margin: 0 auto 1.5rem;
    max-width: 600px;
}

.page-hero__pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
}

.page-hero__pills span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 0.4rem 0.85rem;
}

.page-hero__pills i {
    color: #4ade80;
    font-size: 0.7rem;
}

/* Pricing Section */
.pricing {
    padding: 4rem 0 5rem;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.pricing__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.5rem;
}

.pricing__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.65rem;
    letter-spacing: -0.02em;
}

.pricing__lead {
    font-size: 1.025rem;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.pricing__loading,
.pricing__error {
    grid-column: 1 / -1;
    text-align: center;
    color: #64748b;
    padding: 2rem;
    margin: 0;
}

.pricing__error {
    color: #b91c1c;
}

.pricing__card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid rgba(44, 62, 80, 0.09);
    border-radius: 1.25rem;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
    overflow: hidden;
    transition: translate 0.35s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.pricing__card:hover {
    translate: 0 -6px;
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.1);
}

.pricing__card--featured {
    border-color: rgba(52, 152, 219, 0.35);
    box-shadow: 0 16px 48px rgba(52, 152, 219, 0.12);
    scale: 1.02;
}

.pricing__card--featured:hover {
    box-shadow: 0 24px 56px rgba(52, 152, 219, 0.18);
}

.pricing__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 999px;
    padding: 0.3rem 0.7rem;
}

.pricing__card-header {
    padding: 1.75rem 1.5rem 1.25rem;
    border-bottom: 1px solid rgba(44, 62, 80, 0.08);
    text-align: center;
}

.pricing__card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.pricing__price {
    font-size: 1.125rem;
    font-weight: 700;
    color: #3498db;
    margin: 0 0 0.35rem;
}

.pricing__includes-base {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #16a34a;
    margin: 0 0 0.5rem;
}

.pricing__card-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

.pricing__features {
    list-style: none;
    padding: 1.25rem 1.5rem;
    margin: 0;
    flex: 1;
}

.pricing__feature {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.9rem;
    line-height: 1.55;
    color: #475569;
    margin-bottom: 0.75rem;
}

.pricing__feature:last-child {
    margin-bottom: 0;
}

.pricing__feature i {
    flex-shrink: 0;
    width: 18px;
    margin-top: 0.15rem;
    text-align: center;
}

.pricing__feature--included i {
    color: #27ae60;
}

.pricing__feature--addon i {
    color: #3498db;
}

.pricing__feature small {
    color: #94a3b8;
}

.pricing__card-footer {
    padding: 0 1.5rem 1.5rem;
}

.pricing__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.85rem 1.25rem;
    border-radius: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, translate 0.25s ease;
}

.pricing__cta--primary {
    background: #3498db;
    color: #ffffff;
    border: 1px solid transparent;
}

.pricing__cta--primary:hover {
    background: #2980b9;
    color: #ffffff;
    translate: 0 -1px;
}

.pricing__cta--outline {
    background: transparent;
    color: #1e293b;
    border: 1px solid rgba(44, 62, 80, 0.18);
}

.pricing__cta--outline:hover {
    background: #f8fafc;
    color: #1a6fa8;
    border-color: rgba(52, 152, 219, 0.35);
}

.pricing__note {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    max-width: 640px;
    margin: 2.5rem auto 0;
    padding: 1rem 1.25rem;
    background: rgba(52, 152, 219, 0.08);
    border: 1px solid rgba(52, 152, 219, 0.15);
    border-radius: 0.85rem;
    color: #475569;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.pricing__note i {
    color: #3498db;
    margin-top: 0.15rem;
}

.pricing__note p {
    margin: 0;
}

.pricing__note a {
    color: #1a6fa8;
    font-weight: 600;
    text-decoration: none;
}

.pricing__note a:hover {
    text-decoration: underline;
}

@media (max-width: 991.98px) {
    .pricing__card--featured {
        scale: none;
    }
}

@media (max-width: 575.98px) {
    .page-hero {
        padding-top: calc(var(--header-topbar-height, 38px) + var(--header-nav-height, 76px) + 2rem);
        padding-bottom: 2.5rem;
    }

    .pricing {
        padding: 3rem 0 4rem;
    }

    .pricing__grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pricing__card:hover,
    .pricing__card--featured {
        translate: none;
        scale: none;
    }

    .pricing__cta:hover {
        translate: none;
    }
}

/* Showcase (páginas internas — cards de conteúdo) */
.showcase {
    padding: 4rem 0;
    background: #ffffff;
}

.showcase--alt {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.showcase__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 2.5rem;
}

.showcase__eyebrow {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #3498db;
    margin-bottom: 0.65rem;
}

.showcase__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.65rem;
    letter-spacing: -0.02em;
}

.showcase__lead {
    font-size: 1.025rem;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

.showcase__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.showcase__card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, translate 0.25s ease;
}

.showcase--alt .showcase__card {
    background: #ffffff;
}

.showcase__card:hover {
    border-color: rgba(52, 152, 219, 0.25);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    translate: 0 -2px;
}

.showcase__card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.showcase__card-icon--blue { background: rgba(52, 152, 219, 0.12); color: #3498db; }
.showcase__card-icon--green { background: rgba(46, 204, 113, 0.12); color: #16a34a; }
.showcase__card-icon--cyan { background: rgba(6, 182, 212, 0.12); color: #0891b2; }
.showcase__card-icon--purple { background: rgba(139, 92, 246, 0.12); color: #7c3aed; }

.showcase__card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.showcase__card-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 1rem;
}

.showcase__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.45rem;
}

.showcase__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #475569;
}

.showcase__list li i {
    color: #16a34a;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.showcase .advantages__cta {
    margin-top: 1rem;
}

@media (max-width: 767.98px) {
    .showcase__grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .showcase__card:hover {
        translate: none;
    }
}

/* Integrations page */
.integrations {
    padding: 4rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.integrations__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 2.5rem;
}

.integrations__eyebrow {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #3498db;
    margin-bottom: 0.65rem;
}

.integrations__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.65rem;
    letter-spacing: -0.02em;
}

.integrations__lead {
    font-size: 1.025rem;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

.integrations__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.integrations__card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, translate 0.25s ease;
}

.integrations__card:hover {
    border-color: rgba(52, 152, 219, 0.25);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    translate: 0 -2px;
}

.integrations__card--featured {
    border-color: rgba(52, 152, 219, 0.35);
    box-shadow: 0 8px 32px rgba(52, 152, 219, 0.12);
}

.integrations__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ffffff;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
}

.integrations__card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.integrations__card-icon--blue { background: rgba(52, 152, 219, 0.12); color: #3498db; }
.integrations__card-icon--green { background: rgba(46, 204, 113, 0.12); color: #16a34a; }
.integrations__card-icon--cyan { background: rgba(6, 182, 212, 0.12); color: #0891b2; }
.integrations__card-icon--purple { background: rgba(139, 92, 246, 0.12); color: #7c3aed; }
.integrations__card-icon--gold { background: rgba(245, 158, 11, 0.12); color: #d97706; }
.integrations__card-icon--teal { background: rgba(20, 184, 166, 0.12); color: #0d9488; }

.integrations__card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.integrations__card-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 1rem;
}

.integrations__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.45rem;
}

.integrations__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #475569;
}

.integrations__list li i {
    color: #16a34a;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.integrations-custom {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 48%, #1a5276 100%);
    color: #e2e8f0;
}

.integrations-custom__layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
    align-items: center;
}

.integrations-custom__badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.integrations-custom__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.integrations-custom__lead {
    font-size: 1.025rem;
    line-height: 1.7;
    color: rgba(226, 232, 240, 0.85);
    margin-bottom: 1.5rem;
}

.integrations-custom__features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: grid;
    gap: 0.85rem;
}

.integrations-custom__features li {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
}

.integrations-custom__feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(52, 152, 219, 0.2);
    color: #7dd3fc;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.integrations-custom__features strong {
    display: block;
    color: #ffffff;
    margin-bottom: 0.15rem;
}

.integrations-custom__features p {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(226, 232, 240, 0.75);
}

.integrations-custom__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 0.65rem;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: translate 0.2s ease, box-shadow 0.2s ease;
}

.integrations-custom__cta:hover {
    color: #ffffff;
    translate: 0 -1px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.integrations-custom__visual {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.integrations-custom__hub {
    position: relative;
    z-index: 2;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.8125rem;
    box-shadow: 0 12px 40px rgba(52, 152, 219, 0.35);
}

.integrations-custom__hub i {
    font-size: 1.5rem;
}

.integrations-custom__orbit {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 0.85rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0.65rem;
    color: #1e293b;
    font-size: 0.8125rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.integrations-custom__orbit i {
    color: #3498db;
}

.integrations-custom__orbit--1 { top: 12%; right: 8%; }
.integrations-custom__orbit--2 { bottom: 18%; left: 4%; }
.integrations-custom__orbit--3 { top: 42%; right: 0; }

@media (max-width: 991.98px) {
    .integrations__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .integrations-custom__layout {
        grid-template-columns: 1fr;
    }

    .integrations-custom__visual {
        min-height: 260px;
    }
}

@media (max-width: 575.98px) {
    .integrations__grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .integrations__card:hover,
    .integrations-custom__cta:hover {
        translate: none;
    }
}

/* Assinar plano — formulário */
.signup {
    padding: 3.5rem 0 4.5rem;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.signup__card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 1rem;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.signup__layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.4fr);
}

.signup__aside {
    padding: 2rem;
    background: linear-gradient(180deg, #0f172a 0%, #1e3a5f 100%);
    color: #e2e8f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.signup__aside-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.signup__aside-text {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: rgba(226, 232, 240, 0.85);
    margin: 0;
}

.signup__aside-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
}

.signup__aside-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(226, 232, 240, 0.9);
}

.signup__aside-list i {
    color: #2ecc71;
}

.signup__whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 0.65rem;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: translate 0.2s ease, box-shadow 0.2s ease;
}

.signup__whatsapp:hover {
    color: #ffffff;
    translate: 0 -1px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.signup__form-wrap {
    padding: 2rem;
}

.signup__form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.25rem;
}

.signup__field {
    margin-bottom: 1rem;
}

.signup__label {
    display: block;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.35rem;
    font-size: 0.9375rem;
}

.signup__input,
.signup__select {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.signup__input:focus,
.signup__select:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.15);
    outline: none;
}

.signup__error {
    color: #dc2626;
    font-size: 0.8125rem;
    margin-top: 0.35rem;
}

.signup__captcha {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin: 1.25rem 0;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 0.65rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.signup__captcha img {
    max-width: 60px;
    height: auto;
}

.signup__captcha-input {
    width: 100px;
}

.signup__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 0.65rem;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease, translate 0.2s ease;
}

.signup__submit:hover:not(:disabled) {
    translate: 0 -1px;
}

.signup__submit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

@media (max-width: 991.98px) {
    .signup__layout {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .signup__whatsapp:hover,
    .signup__submit:hover:not(:disabled) {
        translate: none;
    }
}

/* Confirmação pós-formulário */
.confirm-success {
    padding: calc(var(--header-topbar-height, 38px) + var(--header-nav-height, 76px) + 3rem) 0 4rem;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.confirm-success__card {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}

.confirm-success__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.12);
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
}

.confirm-success__eyebrow {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #16a34a;
    margin-bottom: 0.5rem;
}

.confirm-success__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.confirm-success__text {
    font-size: 1.025rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.confirm-success__steps {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: grid;
    gap: 0.65rem;
    text-align: left;
}

.confirm-success__steps li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: #475569;
    padding: 0.65rem 0.85rem;
    background: #f8fafc;
    border-radius: 0.5rem;
}

.confirm-success__step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: #ffffff;
    font-size: 0.8125rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.confirm-success__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.confirm-success__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 0.65rem;
    font-weight: 600;
    text-decoration: none;
    transition: translate 0.2s ease, box-shadow 0.2s ease;
}

.confirm-success__btn--ghost {
    background: #ffffff;
    color: #1e293b;
    border: 1px solid rgba(15, 23, 42, 0.12);
}

.confirm-success__btn--ghost:hover {
    color: #1e293b;
    border-color: rgba(52, 152, 219, 0.35);
    translate: 0 -1px;
}

.confirm-success__btn--whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff;
}

.confirm-success__btn--whatsapp:hover {
    color: #ffffff;
    translate: 0 -1px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

@media (prefers-reduced-motion: reduce) {
    .confirm-success__btn--ghost:hover,
    .confirm-success__btn--whatsapp:hover {
        translate: none;
    }
}

.site-footer {
    position: relative;
    background: #0b1220;
    color: #e2e8f0;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.55), rgba(46, 204, 113, 0.35), transparent);
}

.site-footer__cta {
    position: relative;
    padding: 3.5rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 48%, #1a5276 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 50%, rgba(52, 152, 219, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 85% 50%, rgba(46, 204, 113, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.site-footer__cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.site-footer__cta-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7dd3fc;
    margin-bottom: 0.65rem;
}

.site-footer__cta-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 0.65rem;
    letter-spacing: -0.02em;
}

.site-footer__cta-text {
    font-size: 1rem;
    line-height: 1.65;
    color: #cbd5e1;
    margin: 0;
    max-width: 520px;
}

.site-footer__cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    flex-shrink: 0;
}

.site-footer__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.35rem;
    border-radius: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, translate 0.25s ease, box-shadow 0.25s ease;
}

.site-footer__btn--primary {
    background: #3498db;
    color: #ffffff;
    border: 1px solid transparent;
    box-shadow: 0 8px 24px rgba(52, 152, 219, 0.35);
}

.site-footer__btn--primary:hover {
    background: #2980b9;
    color: #ffffff;
    translate: 0 -1px;
    box-shadow: 0 12px 28px rgba(52, 152, 219, 0.4);
}

.site-footer__btn--ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
}

.site-footer__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.28);
}

.site-footer__main {
    position: relative;
    padding: 3.5rem 0 2rem;
}

.site-footer__main::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 0%, rgba(52, 152, 219, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 100%, rgba(46, 204, 113, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.site-footer__main .container {
    position: relative;
    z-index: 1;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.site-footer__logo-link {
    display: inline-block;
    margin-bottom: 1rem;
}

.site-footer__logo {
    display: block;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.site-footer__tagline {
    font-size: 0.975rem;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 1.25rem;
    max-width: 320px;
}

.site-footer__badges {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.site-footer__badges li {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.8125rem;
    color: #cbd5e1;
}

.site-footer__badges i {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background: rgba(52, 152, 219, 0.15);
    color: #7dd3fc;
    font-size: 0.75rem;
}

.site-footer__heading {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f8fafc;
    margin-bottom: 1.15rem;
}

.site-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer__links li + li {
    margin-top: 0.65rem;
}

.site-footer__links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s ease, translate 0.2s ease;
    display: inline-block;
}

.site-footer__links a:hover {
    color: #ffffff;
    translate: 2px 0;
}

.site-footer__contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.site-footer__contact-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    padding: 0.65rem 0.75rem;
    border-radius: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    transition: background 0.25s ease, border-color 0.25s ease, translate 0.25s ease;
}

.site-footer__contact-link:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(52, 152, 219, 0.25);
    translate: 0 -1px;
}

.site-footer__contact-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.65rem;
    background: rgba(52, 152, 219, 0.15);
    color: #7dd3fc;
    font-size: 0.9rem;
}

.site-footer__contact-icon--whatsapp {
    background: rgba(37, 211, 102, 0.15);
    color: #4ade80;
}

.site-footer__contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.site-footer__contact-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #64748b;
}

.site-footer__contact-value {
    font-size: 0.875rem;
    font-weight: 500;
    color: #e2e8f0;
    word-break: break-word;
}

.site-footer__note {
    margin-top: 1.25rem;
    font-size: 0.8125rem;
    line-height: 1.6;
    color: #64748b;
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__copy {
    margin: 0;
    font-size: 0.8125rem;
    color: #64748b;
    text-align: center;
}

@media (max-width: 991.98px) {
    .site-footer__cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-footer__cta-actions {
        width: 100%;
    }

    .site-footer__btn {
        flex: 1;
        min-width: 140px;
    }

    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem;
    }

    .site-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 575.98px) {
    .site-footer__cta {
        padding: 2.5rem 0;
    }

    .site-footer__main {
        padding: 2.5rem 0 1.5rem;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .site-footer__cta-actions {
        flex-direction: column;
    }

    .site-footer__btn {
        width: 100%;
    }

    .site-footer__bottom {
        align-items: center;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-footer__btn,
    .site-footer__links a,
    .site-footer__contact-link {
        transition: none;
    }

    .site-footer__btn--primary:hover,
    .site-footer__contact-link:hover,
    .site-footer__links a:hover {
        translate: none;
    }
}

.plan-card {
    background: var(--light-color);
    border: 1px solid var(--light-accent);
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.plan-card--featured {
    border-color: var(--accent-color);
    box-shadow: 0 8px 30px rgba(52, 152, 219, 0.15);
}

.plan-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--light-color);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    margin-bottom: 0.75rem;
}

.plan-price {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 1rem;
}

.plan-price strong {
    font-size: 2rem;
    color: var(--primary-color);
}

.plan-price span {
    font-size: 0.95rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--dark-color);
    color: var(--light-color);
    padding: 1rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner a {
    color: var(--accent-color);
}

.cookie-banner[hidden] {
    display: none !important;
}

.legal-page h2 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-page p,
.legal-page li {
    color: var(--secondary-color);
    line-height: 1.7;
}

.legal-content {
    padding: 2.5rem 0 4rem;
    background: #fff;
}

.legal-content__inner {
    max-width: 720px;
    margin: 0 auto;
}

.legal-page__meta {
    font-size: 0.9375rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.legal-page ul {
    margin-bottom: 1.25rem;
    padding-left: 1.25rem;
}

.legal-page ul li {
    margin-bottom: 0.5rem;
}

.legal-page a {
    color: var(--accent-color);
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.legal-page__related {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
    font-size: 0.9375rem;
}

@media (max-width: 991px) {
    .hero-cta-group .btn {
        width: 100%;
    }
}

/* Site Header — index (moderno e interativo) */
.site-header {
    --header-nav-height: 76px;
    --header-topbar-height: 38px;
    z-index: 1030;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
}

.site-header--topbar-hidden {
    --header-topbar-height: 0px;
}

.site-header__topbar {
    height: var(--header-topbar-height);
    overflow: hidden;
    background: linear-gradient(90deg, #1a252f 0%, #2c3e50 50%, #1a5276 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: height 0.35s ease, opacity 0.35s ease;
    position: relative;
    z-index: 3;
}

.site-header__topbar.is-hidden {
    height: 0;
    opacity: 0;
    border: none;
}

.site-header__topbar-inner {
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
}

.site-header__topbar-text {
    margin: 0;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-header__topbar-text i {
    color: #f1c40f;
    margin-right: 0.35rem;
}

.site-header__topbar-text strong {
    color: #fff;
}

.site-header__topbar-link {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    padding: 0.2rem 0.75rem;
    border-radius: 999px;
    background: rgba(52, 152, 219, 0.35);
    transition: background 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.site-header__topbar-link:hover {
    color: #fff;
    background: rgba(52, 152, 219, 0.55);
    transform: translateY(-1px);
}

.site-header__topbar-close {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.65);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, background 0.2s ease;
}

.site-header__topbar-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.site-header__progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: transparent;
    z-index: 5;
    pointer-events: none;
}

.site-header__progress-bar {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    box-shadow: 0 0 12px rgba(52, 152, 219, 0.6);
    transition: width 0.1s linear;
}

.site-header__nav {
    padding: 0;
    position: relative;
    z-index: 2;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header--scrolled .site-header__nav {
    background: rgba(255, 255, 255, 0.94);
    border-bottom-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
}

.site-header--solid.site-header--scrolled .site-header__nav,
.site-header--solid .site-header__nav {
    background: rgba(255, 255, 255, 0.94);
    border-bottom-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
}

.site-header__container {
    min-height: var(--header-nav-height);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    transition: min-height 0.35s ease;
}

.site-header--scrolled .site-header__container {
    min-height: 64px;
}

.site-header__brand {
    position: relative;
    padding: 0;
    margin-right: 1rem;
    z-index: 2;
}

.site-header__brand-glow {
    position: absolute;
    inset: -8px -12px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.25) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.site-header__brand:hover .site-header__brand-glow {
    opacity: 1;
}

.site-header__brand img {
    height: 38px;
    width: auto;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.site-header__logo--dark {
    display: none;
}

.site-header--scrolled .site-header__logo--light {
    display: none;
}

.site-header--scrolled .site-header__logo--dark {
    display: block;
}

.site-header--solid .site-header__logo--light {
    display: none;
}

.site-header--solid .site-header__logo--dark {
    display: block;
}

.site-header--scrolled .site-header__brand-glow {
    opacity: 0;
}

.site-header__brand:hover img {
    transform: scale(1.05) translateY(-1px);
}

.site-header__menu-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.site-header__menu {
    gap: 0.2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.site-header__indicator {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: calc(100% - 6px);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: left 0.35s cubic-bezier(0.34, 1.3, 0.64, 1),
                width 0.35s cubic-bezier(0.34, 1.3, 0.64, 1),
                opacity 0.25s ease,
                background 0.35s ease;
}

.site-header__indicator.is-visible {
    opacity: 1;
}

.site-header--scrolled .site-header__indicator {
    background: rgba(52, 152, 219, 0.12);
    box-shadow: inset 0 0 0 1px rgba(52, 152, 219, 0.2);
}

.site-header__menu .nav-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding: 0.55rem 0.95rem !important;
    border-radius: 999px;
    background: transparent !important;
    box-shadow: none !important;
    transition: color 0.25s ease, transform 0.25s ease;
}

.site-header__menu .nav-link .nav-icon {
    font-size: 0.8rem;
    opacity: 0.75;
    transition: transform 0.3s ease, opacity 0.25s ease, color 0.25s ease;
}

.site-header__menu .nav-link:hover,
.site-header__menu .nav-link:focus-visible {
    color: #fff;
    transform: translateY(-1px);
}

.site-header__menu .nav-link:hover .nav-icon,
.site-header__menu .nav-link:focus-visible .nav-icon {
    opacity: 1;
    transform: scale(1.15);
    color: #5dade2;
}

.site-header__menu .nav-link.active {
    color: #fff;
}

.site-header__menu .nav-link.active .nav-icon {
    opacity: 1;
    color: #5dade2;
}

.site-header--scrolled .site-header__menu .nav-link {
    color: rgba(44, 62, 80, 0.85);
}

.site-header--scrolled .site-header__menu .nav-link:hover,
.site-header--scrolled .site-header__menu .nav-link:focus-visible {
    color: var(--primary-color);
}

.site-header--scrolled .site-header__menu .nav-link.active {
    color: var(--accent-color);
}

.site-header--scrolled .site-header__menu .nav-link.active .nav-icon,
.site-header--scrolled .site-header__menu .nav-link:hover .nav-icon {
    color: var(--accent-color);
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-left: 1.25rem;
    padding-left: 1.25rem;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header--scrolled .site-header__actions {
    border-left-color: rgba(0, 0, 0, 0.08);
}

.site-header__btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.2;
    padding: 0.62rem 1.15rem;
    border-radius: 999px;
    white-space: nowrap;
    transition: transform 0.25s cubic-bezier(0.34, 1.3, 0.64, 1), box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.site-header__btn--outline {
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.site-header__btn--outline:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.site-header--scrolled .site-header__btn--outline {
    color: var(--primary-color);
    border-color: rgba(44, 62, 80, 0.2);
}

.site-header--scrolled .site-header__btn--outline:hover {
    color: var(--primary-color);
    background: rgba(44, 62, 80, 0.06);
    border-color: rgba(44, 62, 80, 0.3);
}

.site-header__btn--cta {
    color: #fff;
    background: linear-gradient(135deg, #3498db 0%, #2471a3 100%);
    border: none;
    box-shadow: 0 4px 18px rgba(52, 152, 219, 0.4);
}

.site-header__btn-shine {
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.site-header__btn--cta:hover .site-header__btn-shine {
    left: 140%;
}

.site-header__btn--cta:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 28px rgba(52, 152, 219, 0.45);
}

.site-header__ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    transform: scale(0);
    animation: headerRipple 0.6s ease-out;
    pointer-events: none;
}

@keyframes headerRipple {
    to {
        transform: scale(2.5);
        opacity: 0;
    }
}

.site-header__toggler {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    padding: 0.55rem 0.65rem;
    margin-left: auto;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.2s ease;
}

.site-header__toggler:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.05);
}

.site-header--scrolled .site-header__toggler {
    border-color: rgba(0, 0, 0, 0.1);
}

.site-header--scrolled .site-header__toggler:hover {
    background: rgba(0, 0, 0, 0.04);
}

.site-header__toggler:focus {
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.3);
}

.site-header__toggler-icon {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    position: relative;
    transition: background 0.2s ease;
}

.site-header__toggler-icon::before,
.site-header__toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.34, 1.3, 0.64, 1), top 0.3s ease, bottom 0.3s ease, opacity 0.2s ease;
}

.site-header__toggler-icon::before { top: -7px; }
.site-header__toggler-icon::after { bottom: -7px; }

.site-header--scrolled .site-header__toggler-icon,
.site-header--scrolled .site-header__toggler-icon::before,
.site-header--scrolled .site-header__toggler-icon::after {
    background: var(--primary-color);
}

.site-header__toggler[aria-expanded="true"] .site-header__toggler-icon {
    background: transparent;
}

.site-header__toggler[aria-expanded="true"] .site-header__toggler-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.site-header__toggler[aria-expanded="true"] .site-header__toggler-icon::after {
    bottom: 0;
    transform: rotate(-45deg);
}

.site-header__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 1025;
    pointer-events: none;
}

.site-header__backdrop.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.site-header-menu-open {
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .site-header__topbar-text {
        font-size: 0.75rem;
        max-width: 58%;
    }

    .site-header__topbar-link {
        font-size: 0.75rem;
        padding: 0.15rem 0.55rem;
    }

    .site-header__collapse {
        position: absolute;
        top: calc(100% + 0.65rem);
        left: 0.75rem;
        right: 0.75rem;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 1.25rem;
        padding: 1rem;
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
        z-index: 10;
    }

    .site-header--scrolled .site-header__collapse {
        background: rgba(255, 255, 255, 0.98);
        border-color: rgba(0, 0, 0, 0.06);
        box-shadow: 0 24px 60px rgba(15, 23, 42, 0.15);
    }

    .site-header__collapse.collapsing .site-header__menu .nav-item,
    .site-header__collapse.show .site-header__menu .nav-item {
        animation: navItemIn 0.45s cubic-bezier(0.34, 1.2, 0.64, 1) both;
    }

    .site-header__collapse.show .site-header__menu .nav-item:nth-child(1) { animation-delay: 0.04s; }
    .site-header__collapse.show .site-header__menu .nav-item:nth-child(2) { animation-delay: 0.08s; }
    .site-header__collapse.show .site-header__menu .nav-item:nth-child(3) { animation-delay: 0.12s; }
    .site-header__collapse.show .site-header__menu .nav-item:nth-child(4) { animation-delay: 0.16s; }
    .site-header__collapse.show .site-header__menu .nav-item:nth-child(5) { animation-delay: 0.2s; }

    @keyframes navItemIn {
        from {
            opacity: 0;
            transform: translateX(-12px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .site-header__menu-wrap {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .site-header__indicator {
        display: none;
    }

    .site-header__menu {
        width: 100%;
        margin-bottom: 0.75rem;
    }

    .site-header__menu .nav-link {
        padding: 0.8rem 1rem !important;
        width: 100%;
    }

    .site-header__menu .nav-link:hover {
        background: rgba(255, 255, 255, 0.06) !important;
        transform: translateX(4px);
    }

    .site-header--scrolled .site-header__menu .nav-link {
        color: var(--primary-color);
    }

    .site-header--scrolled .site-header__menu .nav-link:hover {
        background: rgba(44, 62, 80, 0.05) !important;
    }

    .site-header__actions {
        width: 100%;
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 0.85rem;
        flex-direction: column;
    }

    .site-header--scrolled .site-header__actions {
        border-top-color: rgba(0, 0, 0, 0.08);
    }

    .site-header__btn {
        width: 100%;
    }
}

.showcase__grid--duo {
    max-width: 920px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .showcase__grid--duo {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* SEO landing pages */
.seo-landing--pcp .seo-hero__eyebrow {
    color: #86efac;
}

.seo-landing--erp .seo-hero__eyebrow {
    color: #7dd3fc;
}

.seo-landing--os .seo-hero__eyebrow {
    color: #93c5fd;
}

.seo-landing--estoque .seo-hero__eyebrow {
    color: #6ee7b7;
}

.seo-landing--qualidade .seo-hero__eyebrow {
    color: #fcd34d;
}

.seo-landing--educativo .seo-hero__eyebrow {
    color: #c4b5fd;
}

.seo-hero {
    position: relative;
    padding: calc(var(--header-topbar-height, 38px) + var(--header-nav-height, 76px) + 2.5rem) 0 3rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 48%, #1a5276 100%);
    overflow: hidden;
}

.seo-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 25%, rgba(52, 152, 219, 0.22) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(46, 204, 113, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.seo-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.seo-hero__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7dd3fc;
    margin-bottom: 0.75rem;
}

.seo-hero__title {
    font-size: clamp(1.75rem, 4vw, 2.65rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.seo-hero__lead {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    max-width: 540px;
}

.seo-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.seo-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.35rem;
    border-radius: 999px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.seo-hero__btn--primary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: #fff;
    box-shadow: 0 4px 16px rgba(52, 152, 219, 0.35);
}

.seo-hero__btn--primary:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 8px 24px rgba(52, 152, 219, 0.45);
}

.seo-hero__btn--ghost {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #e2e8f0;
}

.seo-hero__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.seo-hero__media img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.seo-content {
    padding: 3rem 0 2rem;
    background: #fff;
}

.seo-content__article {
    max-width: 820px;
    margin: 0 auto;
}

.seo-intro {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.75rem 1.5rem;
    margin-bottom: 2.5rem;
}

.seo-intro h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.seo-intro .lead {
    color: #475569;
    margin-bottom: 1.25rem;
}

.seo-intro .text-primary {
    color: #3498db !important;
}

@media (min-width: 992px) {
    .seo-hero__inner {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .seo-intro {
        padding: 2rem 2.25rem;
    }
}

@media (max-width: 991.98px) {
    .seo-hero__media {
        max-width: 480px;
        margin: 0 auto;
    }
}

/* CTA interativo — chão de fábrica e landings PCP */
.seo-cta-interactive {
    position: relative;
    padding: 3.5rem 0;
    overflow: hidden;
    background: linear-gradient(160deg, #0f172a 0%, #1e293b 45%, #0f2744 100%);
    color: #e2e8f0;
}

.seo-cta-interactive__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 10% 20%, rgba(52, 152, 219, 0.18), transparent 55%),
        radial-gradient(ellipse 50% 40% at 90% 80%, rgba(46, 204, 113, 0.12), transparent 50%);
    pointer-events: none;
}

.seo-cta-interactive__inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2rem;
    align-items: center;
}

.seo-cta-interactive__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #7dd3fc;
    margin-bottom: 0.75rem;
}

.seo-cta-interactive__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.seo-cta-interactive__lead {
    color: #94a3b8;
    margin-bottom: 1.5rem;
    max-width: 36rem;
    line-height: 1.6;
}

.seo-cta-interactive__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.seo-cta-interactive__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 0.625rem;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.seo-cta-interactive__btn--primary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: #fff;
    box-shadow: 0 8px 24px rgba(52, 152, 219, 0.35);
}

.seo-cta-interactive__btn--primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(52, 152, 219, 0.45);
}

.seo-cta-interactive__btn--ghost {
    background: rgba(255, 255, 255, 0.06);
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.seo-cta-interactive__btn--ghost:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.seo-cta-interactive__note {
    font-size: 0.8125rem;
    color: #64748b;
    margin: 0;
}

.seo-cta-interactive__note i {
    margin-right: 0.35rem;
}

.seo-cta-interactive__panel {
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 1rem;
    padding: 1.25rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
    transition: transform 0.35s ease;
}

.seo-cta-interactive__panel.is-refreshing {
    transform: scale(0.985);
}

.seo-cta-interactive__panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.8125rem;
}

.seo-cta-interactive__live {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #86efac;
    font-weight: 600;
}

.seo-cta-interactive__live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
    animation: seoCtaPulse 2s ease-out infinite;
}

@keyframes seoCtaPulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
    70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.seo-cta-interactive__clock {
    font-variant-numeric: tabular-nums;
    color: #94a3b8;
    font-family: ui-monospace, monospace;
}

.seo-cta-interactive__tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.seo-cta-interactive__tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.6rem 0.5rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    color: #94a3b8;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.seo-cta-interactive__tab:hover {
    color: #e2e8f0;
    border-color: rgba(52, 152, 219, 0.4);
}

.seo-cta-interactive__tab.is-active {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.25), rgba(41, 128, 185, 0.15));
    border-color: rgba(52, 152, 219, 0.55);
    color: #fff;
    transform: translateY(-1px);
}

.seo-cta-interactive__scenario {
    min-height: 11rem;
}

.seo-cta-interactive__metric-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.seo-cta-interactive__metric {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 0.625rem;
    padding: 0.75rem;
}

.seo-cta-interactive__metric--wide {
    grid-column: 1 / -1;
}

.seo-cta-interactive__metric-label {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.seo-cta-interactive__metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    font-variant-numeric: tabular-nums;
}

.seo-cta-interactive__metric-unit {
    font-size: 0.875rem;
    color: #94a3b8;
    margin-left: 0.15rem;
}

.seo-cta-interactive__metric-text {
    display: block;
    font-size: 1rem;
    color: #f1f5f9;
}

.seo-cta-interactive__progress-head {
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
    color: #94a3b8;
    margin-bottom: 0.4rem;
}

.seo-cta-interactive__progress-track {
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    overflow: hidden;
}

.seo-cta-interactive__progress-bar {
    height: 100%;
    width: var(--progress, 0%);
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 999px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.seo-cta-interactive__tags {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.seo-cta-interactive__tags li {
    font-size: 0.8125rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #cbd5e1;
}

.seo-cta-interactive__tag-alert {
    background: rgba(251, 191, 36, 0.15) !important;
    color: #fcd34d !important;
}

.seo-cta-interactive__insight {
    font-size: 0.875rem;
    color: #94a3b8;
    margin: 0;
    padding: 0.75rem;
    border-radius: 0.5rem;
    background: rgba(52, 152, 219, 0.1);
    border-left: 3px solid #3498db;
}

.seo-cta-interactive__oee {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.seo-cta-interactive__ring {
    --oee: 78;
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.seo-cta-interactive__ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.seo-cta-interactive__ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 10;
}

.seo-cta-interactive__ring-fill {
    fill: none;
    stroke: #3498db;
    stroke-width: 10;
    stroke-linecap: round;
    stroke-dasharray: 326.73;
    stroke-dashoffset: calc(326.73 - (326.73 * var(--oee) / 100));
    transition: stroke-dashoffset 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.seo-cta-interactive__ring-label {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.seo-cta-interactive__ring-label strong {
    font-size: 1.75rem;
    color: #fff;
    line-height: 1;
}

.seo-cta-interactive__ring-label span {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.seo-cta-interactive__oee-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    min-width: 10rem;
}

.seo-cta-interactive__oee-list li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    font-size: 0.875rem;
    color: #94a3b8;
}

.seo-cta-interactive__oee-list li:last-child {
    border-bottom: none;
}

.seo-cta-interactive__oee-list strong {
    color: #fff;
    font-size: 1.125rem;
    font-variant-numeric: tabular-nums;
}

.seo-cta-interactive__oee-list em {
    font-style: normal;
    color: #64748b;
    margin-left: 0.15rem;
}

.seo-cta-interactive__panel-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    font-size: 0.75rem;
    color: #64748b;
}

.seo-cta-interactive__shuffle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.65rem;
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 0.375rem;
    background: transparent;
    color: #94a3b8;
    font-size: 0.75rem;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.seo-cta-interactive__shuffle:hover {
    color: #e2e8f0;
    border-color: rgba(52, 152, 219, 0.5);
    background: rgba(52, 152, 219, 0.1);
}

.seo-cta-interactive__shuffle:active i {
    animation: seoCtaSpin 0.45s ease;
}

@keyframes seoCtaSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (min-width: 992px) {
    .seo-cta-interactive__inner {
        grid-template-columns: 1fr 1.05fr;
        gap: 2.5rem;
    }

    .seo-cta-interactive__tabs {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 575.98px) {
    .seo-cta-interactive {
        padding: 2.5rem 0;
    }

    .seo-cta-interactive__actions {
        flex-direction: column;
    }

    .seo-cta-interactive__btn {
        justify-content: center;
        width: 100%;
    }
}