/* =============================================
   AM VEÍCULOS - CSS PRINCIPAL
   Estilos comuns a todas as páginas
   ============================================= */

/* RESET E VARIÁVEIS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Gilmer';
    src: url('fonts/Gilmer-Light.woff2') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilmer';
    src: url('fonts/Gilmer-Regular.woff2') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilmer';
    src: url('fonts/Gilmer-Medium.woff2') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilmer';
    src: url('fonts/Gilmer-Heavy.woff2') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Cores AM Veículos */
    --primary: #c00002;
    --primary-dark: #8b0001;
    --secondary: #ff6600;
    --dark: #071928;
    --dark-blue: #0d273b;
    --light-blue: #9CB4C8;
    --white: #ffffff;

    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #c00002 0%, #8b0001 100%);
    --gradient-dark: linear-gradient(135deg, #071928 0%, #0d273b 100%);

    /* Sombras modernas */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);

    /* Transições suaves */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

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

body {
    font-family: 'Gilmer', 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark);
    background: linear-gradient(135deg, #071928 0%, #0d273b 50%, #1a1a1a 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* Corrigir overflow horizontal em mobile */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Garantir que imagens não ultrapassem a tela */
img {
    max-width: 100%;
    height: auto;
}

/* =============================================
   PRELOADER
   ============================================= */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #071928;
    opacity: 1;
    visibility: visible;
    transition:
        opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0s linear 1.2s;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

body.loading {
    overflow: hidden;
}

/* Canvas do gradient animado */
#gradient-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    --gradient-color-1: #071928;
    --gradient-color-2: #0d273b;
    --gradient-color-3: #1a1a1a;
    --gradient-color-4: #c00002;
}

.preloader-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.preloader-logo {
    width: 200px;
    height: auto;
    margin-bottom: 3rem;
    animation: logoFloat 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

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

.preloader-spinner {
    width: 60px;
    height: 60px;
    position: relative;
}

.preloader-spinner::before,
.preloader-spinner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #c00002;
    animation: spin 1.5s linear infinite;
}

.preloader-spinner::before {
    width: 60px;
    height: 60px;
}

.preloader-spinner::after {
    width: 40px;
    height: 40px;
    top: 10px;
    left: 10px;
    border-top-color: #ff6600;
    animation-duration: 1s;
    animation-direction: reverse;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.preloader-text {
    margin-top: 2rem;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: preloaderPulse 1.5s ease-in-out infinite;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@keyframes preloaderPulse {
    0%,
    100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

/* =============================================
   HEADER
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background: linear-gradient(135deg, rgba(192, 0, 2, 0.75) 0%, rgba(139, 0, 1, 0.75) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.header.scrolled {
    backdrop-filter: blur(20px) saturate(200%);
    -webkit-backdrop-filter: blur(20px) saturate(200%);
    background: linear-gradient(135deg, rgba(192, 0, 2, 0.75) 0%, rgba(139, 0, 1, 0.75) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
}

/* NAVEGAÇÃO */
.nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    position: relative;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--white);
    padding: 0.5rem 0;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--white);
    opacity: 0.8;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--white);
}

.btn-header-cta {
    background: var(--white);
    color: var(--primary);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border: 2px solid var(--white);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}

.btn-header-cta:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

/* Menu Mobile */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

/* =============================================
   BOTÕES GLOBAIS
   ============================================= */
.btn {
    padding: 1.125rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6600 0%, #ff9933 100%);
    color: var(--white);
    box-shadow:
        0 8px 20px rgba(255, 102, 0, 0.35),
        0 4px 10px rgba(255, 102, 0, 0.25);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow:
        0 16px 32px rgba(255, 102, 0, 0.45),
        0 8px 16px rgba(255, 102, 0, 0.35),
        0 0 0 1px rgba(255, 102, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--dark);
    border-color: var(--white);
    box-shadow:
        0 12px 24px rgba(255, 255, 255, 0.3),
        0 6px 12px rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
}

/* =============================================
   SEÇÕES COMUNS
   ============================================= */
.section {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

.section.features {
    background: var(--gradient-dark);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Futura Condensed Extra', sans-serif;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--light-blue);
    font-weight: 300;
}

/* =============================================
   CARDS DE VEÍCULOS
   ============================================= */
.veiculos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.veiculo-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 8px 24px rgba(7, 25, 40, 0.12),
        0 4px 12px rgba(192, 0, 2, 0.08),
        0 1px 3px rgba(7, 25, 40, 0.1);
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(7, 25, 40, 0.06);
}

.veiculo-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow:
        0 32px 64px rgba(7, 25, 40, 0.25),
        0 16px 32px rgba(192, 0, 2, 0.20),
        0 8px 16px rgba(255, 102, 0, 0.15),
        0 0 0 1px rgba(192, 0, 2, 0.12);
    border-color: rgba(192, 0, 2, 0.2);
}

.veiculo-imagem {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background: #f5f5f5;
    overflow: hidden;
}

.veiculo-imagem img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.veiculo-card:hover .veiculo-imagem img {
    transform: scale(1.08);
}

.veiculo-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ff6600 0%, #ff9933 100%);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(255, 102, 0, 0.4);
    z-index: 2;
}

.veiculo-info {
    padding: 1.75rem;
    position: relative;
    z-index: 2;
}

.veiculo-modelo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.veiculo-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.veiculo-spec {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9rem;
    color: #666;
}

.veiculo-spec-icon {
    color: var(--primary);
    font-size: 1.125rem;
    width: 20px;
    text-align: center;
}

.veiculo-preco-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 2px solid #f0f0f0;
}

.veiculo-preco {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

/* =============================================
   FEATURES / BENEFÍCIOS
   ============================================= */
.features {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(192, 0, 2, 0.1);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 102, 0, 0.3);
    transform: translateY(-8px);
    box-shadow:
        0 20px 40px rgba(7, 25, 40, 0.4),
        0 8px 16px rgba(192, 0, 2, 0.3),
        0 0 0 1px rgba(255, 102, 0, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(192, 0, 2, 0.4);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1rem;
}

/* =============================================
   FOOTER
   ============================================= */
.footer-modern {
    background: linear-gradient(135deg, #071928 0%, #0d273b 50%, #1a1a1a 100%);
    color: #fff;
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-modern-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-logo-section {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 60px;
    max-width: 280px;
    object-fit: contain;
}

.footer-divider {
    height: 3px;
    background: linear-gradient(90deg,
            transparent 0%,
            #c00002 20%,
            #ff6600 50%,
            #c00002 80%,
            transparent 100%);
    margin: 2rem 0 3rem;
    border-radius: 2px;
}

.footer-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-info-block {
    text-align: left;
}

.footer-city {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ff6600;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.footer-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #ff6600;
    margin-bottom: 1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-address,
.footer-contact-link {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #e0e0e0;
    text-decoration: none;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.footer-address:hover,
.footer-contact-link:hover {
    color: #ff6600;
    transform: translateX(5px);
}

.footer-address i,
.footer-contact-link i {
    color: #ff6600;
    font-size: 1.1rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.footer-text {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-text i {
    color: #ff6600;
    font-size: 1rem;
    min-width: 20px;
}

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

.footer-copyright {
    color: #999;
    font-size: 0.875rem;
}

/* =============================================
   WHATSAPP FLUTUANTE
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* =============================================
   LOADING
   ============================================= */
.loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    min-height: 300px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(192, 0, 2, 0.1);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading p {
    margin-top: 1rem;
    color: #666;
    font-weight: 500;
}

/* =============================================
   PAGE HEADER
   ============================================= */
.page-header {
    padding: 6rem 0 2rem;
    margin-top: 0 !important;
    padding-top: calc(70px + 4rem);
    background: var(--gradient-dark);
    text-align: center;
    color: var(--white);
    margin-bottom: 0;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Futura Condensed Extra', sans-serif;
    text-transform: uppercase;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    font-weight: 300;
}

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb {
    padding: 2rem 0 1rem;
    margin-top: 70px;
}

.btn-voltar {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--secondary);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    background: rgba(192, 0, 2, 0.05);
    transition: var(--transition);
}

.btn-voltar:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateX(-4px);
}

/* =============================================
   UTILITÁRIOS
   ============================================= */
.section-bg-light {
    background-color: #f8f9fa;
}

.section-bg-dark {
    background-color: var(--dark);
}

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

.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 3rem;
}

.label-orange {
    color: #ff6600 !important;
}

/* =============================================
   RESPONSIVIDADE
   ============================================= */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: linear-gradient(135deg, rgba(143, 4, 13, 1) 0%, rgba(107, 10, 17, 1) 100%);
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
        transition: max-height 0.3s ease, padding 0.3s ease;
        text-align: center;
    }

    .nav.active {
        max-height: 500px;
        padding: 1.5rem 2rem;
    }

    .nav-link {
        position: relative;
        font-weight: 500;
        font-size: 0.95rem;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        color: var(--white);
        padding: 1rem 0;
        display: inline-block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: var(--transition-fast);
    }

    .nav-link:last-of-type {
        border-bottom: none;
    }

    .btn-header-cta {
        width: 100%;
        max-width: 300px;
        margin: 1rem auto 0 auto;
        display: block;
    }

    .section-title {
        font-size: 2rem;
    }

    .veiculos-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .footer-modern {
        padding: 3rem 0 1.5rem;
    }

    .footer-modern-container {
        padding: 0 1.5rem;
    }

    .footer-logo {
        height: 45px;
    }

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

    .footer-info-block {
        text-align: center;
    }

    .footer-address,
    .footer-contact-link,
    .footer-text {
        justify-content: center;
    }

    .footer-city {
        font-size: 1.25rem;
    }

    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
    }

    .whatsapp-button {
        width: 55px;
        height: 55px;
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }

    .veiculo-preco {
        font-size: 1.5rem;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .footer-logo {
        height: 40px;
    }

    .footer-city {
        font-size: 1.1rem;
    }

    .footer-title {
        font-size: 0.8rem;
    }

    .footer-address,
    .footer-contact-link {
        font-size: 0.9rem;
    }
}

/* =============================================
   GRADIENTE ANIMADO DE FUNDO
   ============================================= */
#gradient-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: 1;
    display: block;
    --gradient-color-1: #294d6a;
    --gradient-color-2: #0d273b;
    --gradient-color-3: #071928;
    --gradient-color-4: #0d273b;
}
