:root {
    --primary: #0B1E3D;
    --primary-light: #132D54;
    --secondary: #1690e0;
    --secondary-light: #1690e0;
    --secondary-pale: rgba(22, 143, 224, 0.13);
    --dark: #060E1A;
    --light: #F6F7F9;
    --white: #FFFFFF;
    --gray-200: #E9ECEF;
    --gray-600: #6C757D;
    --gray-800: #343A40;
    --shadow-sm: 0 2px 12px rgba(11, 30, 61, 0.06);
    --shadow-md: 0 8px 32px rgba(11, 30, 61, 0.10);
    --shadow-lg: 0 20px 60px rgba(11, 30, 61, 0.14);
    --shadow-gold: 0 8px 32px rgba(22, 143, 224, 0.322);
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font-primary: 'Plus Jakarta Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

.section-padding {
    padding: 100px 0;
}

.section-padding-lg {
    padding: 120px 0;
}

.section-padding-sm {
    padding: 70px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .section-padding-lg {
        padding: 70px 0;
    }

    .section-padding-sm {
        padding: 45px 0;
    }
}

.accent-line {
    display: inline-block;
    width: 50px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
    margin-bottom: 16px;
}

.accent-line.centered {
    margin-left: auto;
    margin-right: auto;
}

.badge-premium {
    display: inline-block;
    background: var(--secondary-pale);
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    padding: 6px 16px;
    border-radius: 50px;
    text-transform: uppercase;
}

.section-header {
    margin-bottom: 50px;
}

.section-header .overline {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 8px;
}

.section-header h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
}

.section-header.text-center p {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
}

/* NAVBAR */
.navbar {
    padding: 12px 0;
    transition: all 0.4s ease;
    z-index: 1050;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: var(--shadow-md);
    padding: 8px 0;
}

.navbar .navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--white) !important;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar.scrolled .navbar-brand {
    color: var(--primary) !important;
}

.navbar .navbar-brand .brand-accent {
    color: var(--secondary-light);
    transition: color 0.3s;
}

.navbar.scrolled .navbar-brand .brand-accent {
    color: var(--secondary);
}

.navbar .nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 8px 18px !important;
    transition: all 0.2s ease;
    border-radius: 6px;
}

.navbar.scrolled .nav-link {
    color: var(--gray-800) !important;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--secondary-light) !important;
    background: rgba(255, 255, 255, 0.08);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--secondary) !important;
    background: var(--secondary-pale);
}

.navbar .btn-cta-nav {
    background: var(--secondary);
    color: var(--white) !important;
    font-weight: 600;
    padding: 10px 24px !important;
    border-radius: 50px;
    box-shadow: var(--shadow-gold);
}

.navbar .btn-cta-nav:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(184, 134, 11, 0.28);
}

.navbar-toggler {
    border: none;
    color: var(--white);
}

.navbar.scrolled .navbar-toggler {
    color: var(--primary);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(11,30,61,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

@media (max-width: 991px) {
    .navbar {
        background: rgba(11, 30, 61, 0.97);
        backdrop-filter: blur(20px);
        padding: 10px 0;
    }

    .navbar.scrolled {
        background: rgba(255, 255, 255, 0.97);
    }

    .navbar .nav-link {
        color: rgba(255, 255, 255, 0.85) !important;
    }

    .navbar.scrolled .nav-link {
        color: var(--gray-800) !important;
    }

    .navbar-collapse {
        background: rgba(11, 30, 61, 0.98);
        border-radius: var(--radius-md);
        padding: 20px;
        margin-top: 12px;
    }

    .navbar.scrolled .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow-lg);
    }
}

/* HERO */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(6, 14, 26, 0.85) 0%, rgba(11, 30, 61, 0.75) 35%, rgba(19, 45, 84, 0.70) 65%, rgba(11, 30, 61, 0.85) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-swiper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-swiper .swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    background-color: #0B1E3D;
}

.hero-swiper .swiper-slide-active {
    transform: scale(1.08);
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--secondary-light);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin-bottom: 18px;
}

.hero-content h1 .highlight {
    color: var(--secondary-light);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 520px;
    margin-bottom: 32px;
}

.btn-hero-primary {
    background: var(--secondary);
    color: var(--white);
    font-weight: 700;
    padding: 15px 34px;
    border-radius: 50px;
    font-size: 1rem;
    letter-spacing: 0.02em;
    transition: all 0.35s ease;
    box-shadow: var(--shadow-gold);
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-primary:hover {
    background: var(--secondary-light);
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(22, 143, 224, 0.5);
}

.hero-stats-row {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.03em;
}

.hero-swiper .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--secondary-light);
    opacity: 0.9;
    transition: all 0.3s ease;
    margin: 0 6px !important;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--secondary-light);
    border-color: var(--secondary-light);
    transform: scale(1.2);
    box-shadow: 0 0 16px rgba(22, 143, 224, 0.5);
}

.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    color: var(--primary);
    transition: all 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
}

.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
    box-shadow: var(--shadow-gold);
    transform: translateY(-50%) scale(1.05);
}

.hero-swiper .swiper-button-prev {
    left: 20px;
}

.hero-swiper .swiper-button-next {
    right: 20px;
}

.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
    font-size: 1.2rem;
    font-weight: bold;
}

@media (max-width: 768px) {

    .hero-swiper .swiper-button-prev,
    .hero-swiper .swiper-button-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        top: auto;
        bottom: 20px;
        transform: translateY(0);
    }

    .hero-swiper .swiper-button-prev:hover,
    .hero-swiper .swiper-button-next:hover {
        transform: scale(1.05);
    }

    .hero-swiper .swiper-button-prev {
        left: 20%;
    }

    .hero-swiper .swiper-button-next {
        right: 20%;
    }
}

/* SERVICE CARDS */
.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    cursor: pointer;
}

.service-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.service-card .card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--secondary-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.3s;
}

.service-card:hover .card-icon {
    background: var(--secondary);
}

.service-card .card-icon i {
    font-size: 1.6rem;
    color: var(--secondary);
    transition: 0.3s;
}

.service-card:hover .card-icon i {
    color: var(--white);
}

/* BENEFIT ITEM */
.benefit-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid var(--gray-200);
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-icon-circle {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: var(--secondary-pale);
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon-circle i {
    font-size: 1.3rem;
    color: var(--secondary);
}

/* PARTNERS */
.partner-logo-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 20px 15px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.partner-logo-card:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.partner-logo-card svg {
    max-width: 100%;
    max-height: 55px;
    width: auto;
    height: auto;
    transition: transform 0.3s ease;
}

.partner-logo-card:hover svg {
    transform: scale(1.05);
}

.swiper-partners {
    padding: 10px 4px 40px;
}

.swiper-partners .swiper-pagination-bullet {
    background: var(--secondary);
    opacity: 0.3;
}

.swiper-partners .swiper-pagination-bullet-active {
    opacity: 1;
}

/* STATS */
.stats-section {
    background: linear-gradient(170deg, var(--primary) 0%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.stat-box {
    text-align: center;
    padding: 24px;
    position: relative;
    z-index: 2;
}

.stat-number-lg {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
}

.stat-label-lg {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* TESTIMONIALS */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    height: 100%;
}

.testimonial-stars {
    color: var(--secondary);
}

.swiper-testimonials {
    padding-bottom: 40px;
}

.swiper-testimonials .swiper-button-prev,
.swiper-testimonials .swiper-button-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    color: var(--primary);
    transition: all 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    z-index: 10;
    top: auto;
    bottom: 50%;
    transform: translateY(50%);
    margin-top: 0;
    position: absolute;
}

.swiper-testimonials .swiper-button-prev:hover,
.swiper-testimonials .swiper-button-next:hover {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
    box-shadow: var(--shadow-gold);
    transform: translateY(50%) scale(1.05);
}

.swiper-testimonials .swiper-button-prev {
    left: -70px;
}

.swiper-testimonials .swiper-button-next {
    right: -70px;
}

.swiper-testimonials .swiper-button-prev::after,
.swiper-testimonials .swiper-button-next::after {
    font-size: 1.2rem;
    font-weight: bold;
}

@media (max-width: 1200px) {
    .swiper-testimonials .swiper-button-prev {
        left: 10px;
    }

    .swiper-testimonials .swiper-button-next {
        right: 10px;
    }
}

@media (max-width: 768px) {

    .swiper-testimonials .swiper-button-prev,
    .swiper-testimonials .swiper-button-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        top: auto;
        bottom: 10px;
        transform: translateY(0);
        position: absolute;
        margin-top: 0;
    }

    .swiper-testimonials .swiper-button-prev {
        left: 20%;
    }

    .swiper-testimonials .swiper-button-next {
        right: 20%;
    }

    .swiper-testimonials .swiper-button-prev:hover,
    .swiper-testimonials .swiper-button-next:hover {
        transform: scale(1.05);
    }
}

/* FORM */
.form-premium {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 44px 36px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.form-control {
    border-radius: 8px;
    border: 2px solid var(--gray-200);
    padding: 13px 16px;
    font-size: 0.95rem;
    transition: 0.2s;
    background: #f8f9fa;
    font-family: var(--font-primary);
}

.form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.08);
    background: #fff;
    outline: none;
}

.form-control.is-valid {
    border-color: #0F7B4E;
    background: #f0faf5;
}

.form-control.is-invalid {
    border-color: #C0392B;
    background: #fef5f5;
}

.invalid-feedback {
    font-weight: 500;
    font-size: 0.82rem;
    color: #C0392B;
}

.btn-submit {
    background: var(--secondary);
    color: #fff;
    font-weight: 700;
    padding: 15px 36px;
    border-radius: 50px;
    border: none;
    width: 100%;
    transition: 0.35s;
    box-shadow: var(--shadow-gold);
}

.btn-submit:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(184, 134, 11, 0.28);
}

/* FAQ */
.accordion-premium .accordion-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md) !important;
    margin-bottom: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.accordion-premium .accordion-button {
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary);
    background: #fff;
    padding: 18px 22px;
    box-shadow: none !important;
}

.accordion-premium .accordion-button:not(.collapsed) {
    color: var(--secondary);
    background: var(--secondary-pale);
}

.accordion-body {
    padding: 18px 22px;
    font-size: 0.93rem;
    color: var(--gray-600);
}

/* FOOTER */
.footer-enterprise {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 70px 0 30px;
}

.footer-enterprise h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-enterprise a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-enterprise a:hover {
    color: var(--secondary-light);
}

.footer-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
    margin-right: 8px;
    transition: 0.3s;
}

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

/* FLOATING BUTTONS */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    animation: pulseWhatsapp 2s infinite;
    z-index: 1055;
}

.whatsapp-float i {
    font-size: 1.8rem;
    color: #fff;
}

@keyframes pulseWhatsapp {
    0% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    }

    50% {
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
        transform: scale(1.05);
    }

    100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--secondary);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    opacity: 0;
    visibility: hidden;
    transition: 0.35s;
    box-shadow: var(--shadow-gold);
    cursor: pointer;
    z-index: 1040;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

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

    .form-premium {
        padding: 28px 18px;
    }

    .partner-logo-card {
        height: 90px;
        padding: 15px 10px;
    }
}

/* SOBRE */
.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 0.6rem;
    position: relative;
    padding-left: 2.2rem;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 2px;
    background: var(--secondary);
    border-radius: 1px;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 580px;
    line-height: 1.6;
    font-weight: 400;
}

.about-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 350px;
    background: linear-gradient(135deg, #e8eaf0 0%, #cdd2db 100%);
}

.about-badge-float {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.2rem 1.5rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
    z-index: 5;
}

.about-badge-float .num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-primary);
}

.about-badge-float .lbl {
    font-size: 0.75rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.value-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-smooth);
    text-align: center;
    height: 100%;
}

.value-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    transform: translateY(-4px);
}

.value-card .value-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background: var(--secondary-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    font-size: 1.3rem;
    color: var(--secondary);
}

.value-card h5 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.value-card p {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin: 0;
}

.small {
    font-size: 0.85rem;
}

.text-muted {
    color: var(--gray-600) !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

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