/*
    Este ficheiro foi atualizado para otimizar a responsividade da página inicial.
    CORRIGIDO: Layout quebrado, estilos conflitantes removidos
*/

/* Styles for the new Home Page structure */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #ffffff;
}

/* ==========================================
   HERO SECTION STYLES
   ========================================== */

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Estilo do vídeo */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Logo centralizada sobre o vídeo */
.hero-logo-container {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.hero-logo {
    max-width: 340px;
    height: auto;
}

/* Controle de áudio do vídeo */
.video-audio-control {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.video-audio-control:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    padding-top: 380px;
}

/* ==========================================
   HERO CARDS SECTION - CENTRALIZADOS
   ========================================== */

/* Seção dos cards e filtros */
.hero-cards-filter-section {
    padding: 60px 0;
    background: #000000;
}

/* Hero Cards Container */
.hero-cards-container {
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin-bottom: 50px;
    padding: 0 15px;
}

.hero-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.hero-card {
    position: relative;
    height: 180px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(5, 252, 4, 0.2);
    backdrop-filter: blur(5px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    transition: all 0.4s ease-in-out;
}

.hero-card-image {
    width: 100%;
    height: 50%;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.hero-card-text-content {
    padding: 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #05FC04;
    margin-bottom: 5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    z-index: 2;
}

.hero-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0;
    z-index: 2;
}

.hero-card:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 15px 40px rgba(5, 252, 4, 0.5);
    border-color: #05FC04;
}

.hero-card-link:hover .hero-card {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 18px 45px rgba(5, 252, 4, 0.6);
}

.hero-card-link:hover .hero-card h3,
.hero-card-link:hover .hero-card p {
    transform: none;
    transition: none;
}

/* Filter Bar */
.filter-bar {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(5, 252, 4, 0.2);
    z-index: 2;
    width: 90%;
    max-width: 900px;
    margin-top: -50px;
    backdrop-filter: blur(5px);
}

.filter-bar .form-control {
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    border: 1px solid #05FC04;
    border-radius: 8px;
    padding: 10px 15px;
}

.filter-bar .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.filter-bar .form-control:focus {
    background-color: rgba(0, 0, 0, 0.9);
    border-color: #05FC04;
    box-shadow: 0 0 0 0.2rem rgba(5, 252, 4, 0.25);
    color: #ffffff;
}

.filter-bar .btn-primary {
    background-color: #05FC04;
    border-color: #05FC04;
    color: #000000;
    font-weight: bold;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    border-radius: 8px;
    padding: 12px 25px;
}

.filter-bar .btn-primary:hover {
    background-color: #04D803;
    border-color: #04D803;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(5, 252, 4, 0.4);
}

/* Section Titles */
.section-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 4px;
    width: 100px;
    background-color: #05FC04;
    border-radius: 5px;
}

/* ========================================= */
/* FEATURED VEHICLES - CARROSSEL MELHORADO */
/* ========================================= */

.featured-vehicles-section {
    background-color: #0a0a0a;
    padding: 80px 0;
    overflow: hidden;
}

.featured-carousel-wrapper {
    position: relative;
    overflow: hidden; /* ESCONDE o excesso */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    max-width: 1400px; /* LARGURA MÁXIMA para controlar quantos carros aparecem */
}

.featured-carousel-inner {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Cada item do carrossel - TAMANHO AJUSTADO */
.featured-car-item {
    flex: 0 0 auto;
    width: 320px; /* LARGURA FIXA para caber 4 no desktop */
    margin-right: 20px; /* MENOS ESPAÇAMENTO */
    opacity: 0.8;
    transform: scale(0.95);
    transition: all 0.5s ease;
}

.featured-car-item.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.featured-car-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 1px solid #333333;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.featured-car-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(5, 252, 4, 0.2);
    border-color: #05FC04;
}

.car-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.car-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-car-card:hover .car-image {
    transform: scale(1.05);
}

.photo-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #05FC04;
    color: #000000;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.car-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.car-title {
    color: #05FC04;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.car-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.car-price {
    color: #05FC04;
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.view-details-btn {
    background: linear-gradient(45deg, #05FC04, #04D803);
    border: none;
    color: #000000;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.view-details-btn:hover {
    background: linear-gradient(45deg, #04D803, #03C602);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(5, 252, 4, 0.4);
    color: #ffffff;
    text-decoration: none;
}

/* ==========================================
   CAROUSEL BUTTON - POSIÇÃO CORRIGIDA
   ========================================== */

.carousel-next {
    position: absolute;
    right: -60px; /* POSICIONADO FORA à direita */
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    background: linear-gradient(45deg, #05FC04, #04D803);
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: #000000;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(5, 252, 4, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-next:hover {
    background: linear-gradient(45deg, #04D803, #03C602);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(5, 252, 4, 0.5);
}

.carousel-next:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(5, 252, 4, 0.4);
}

/* Indicadores */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: #05FC04;
    transform: scale(1.2);
}

/* Botão "View All" */
.view-all-container {
    text-align: center;
    margin-top: 50px;
}

.view-all-btn {
    background: transparent;
    border: 2px solid #05FC04;
    color: #05FC04;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.view-all-btn:hover {
    background-color: #05FC04;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(5, 252, 4, 0.4);
    text-decoration: none;
}

/* ========================================= */
/* OTHER SECTIONS */
/* ========================================= */

/* Scroll Reveal Effects */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* About Us Section - TEXTOS MAIS NÍTIDOS */
#about-us {
    position: relative;
    background-color: #0a0a0a;
    color: #ffffff;
    padding: 50px 0;
    overflow: hidden;
}

#about-us .background-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/fotocapa2.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.4) grayscale(0.5);
    z-index: 0;
}

#about-us .content-wrapper {
    position: relative;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

#about-us .lead, #about-us p {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    font-weight: 500;
    line-height: 1.8;
}

#about-us .section-title {
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
}

#about-us .btn-outline-primary {
    border-color: #05FC04;
    color: #05FC04;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

#about-us .btn-outline-primary:hover {
    background-color: #05FC04;
    color: #000000;
}

/* Testimonials Section - TEXTOS MAIS NÍTIDOS */
#testimonials {
    background-color: #0a0a0a;
    padding: 80px 0;
}

#testimonials .blockquote {
    border-left: 5px solid #05FC04;
    padding-left: 20px;
    margin-bottom: 30px;
}

#testimonials .blockquote p {
    font-style: italic;
    font-size: 1.3rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

#testimonials .blockquote-footer {
    color: #ffffff;
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

#testimonials .blockquote-footer cite {
    color: #05FC04;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

#testimonials .section-title {
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
}

/* Contact Info Section - TEXTOS MAIS NÍTIDOS */
#contact-info {
    background-color: #1a1a1a;
    padding: 60px 0;
    text-align: center;
}

#contact-info h3 {
    color: #05FC04;
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

#contact-info p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

#contact-info .contact-detail {
    margin-bottom: 20px;
}

.contact-detail i {
    color: #05FC04;
    margin-right: 10px;
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Floating Message Button */
.floating-message-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #05FC04;
    color: #000000;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(5, 252, 4, 0.4);
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.floating-message-btn:hover {
    background-color: #04D803;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(5, 252, 4, 0.6);
}

/* ==========================================
   MODAL STYLING - ESTILO IGUAL AO LOGIN
   ========================================== */

/* Modal com fundo escuro e borda verde */
#messageModal .modal-content {
    background: rgba(26, 26, 26, 0.95) !important; /* Fundo escuro semi-transparente */
    backdrop-filter: blur(10px) !important;
    border: 2px solid #05FC04 !important; /* Borda verde característica */
    border-radius: 20px !important;
    box-shadow: 0 15px 40px rgba(5, 252, 4, 0.2) !important;
}

/* Modal header com estilo escuro */
#messageModal .modal-header {
    background: transparent !important;
    border-bottom: 1px solid rgba(5, 252, 4, 0.2) !important;
    padding: 25px 30px !important;
}

/* Título do modal em verde */
#messageModal .modal-title {
    color: #05FC04 !important;
    font-size: 2rem !important;
    font-weight: bold !important;
    text-align: center !important;
    width: 100% !important;
    text-shadow: 0 0 10px rgba(5, 252, 4, 0.3) !important;
}

/* Botão de fechar (X) */
#messageModal .close {
    color: #ffffff !important;
    opacity: 0.8 !important;
    font-size: 1.5rem !important;
    transition: all 0.3s ease !important;
}

#messageModal .close:hover {
    color: #05FC04 !important;
    opacity: 1 !important;
}

/* Modal body */
#messageModal .modal-body {
    background: transparent !important;
    padding: 30px !important;
}

/* Labels dos campos */
#messageModal .form-group label {
    color: #ffffff !important;
    font-weight: 500 !important;
    margin-bottom: 8px !important;
    font-size: 0.95rem !important;
}

/* Campos de input e textarea com fundo escuro */
#messageModal .form-control {
    background-color: rgba(0, 0, 0, 0.8) !important;
    border: 1px solid rgba(5, 252, 4, 0.3) !important;
    color: #ffffff !important;
    padding: 12px 15px !important;
    border-radius: 10px !important;
    transition: all 0.3s ease !important;
}

#messageModal .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

#messageModal .form-control:focus {
    background-color: rgba(0, 0, 0, 0.9) !important;
    border-color: #05FC04 !important;
    box-shadow: 0 0 0 0.2rem rgba(5, 252, 4, 0.25) !important;
    color: #ffffff !important;
    outline: none !important;
}

/* Texto de ajuda */
#messageModal .form-text {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.85rem !important;
}

/* Checkbox de consentimento */
#messageModal .form-check-label {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
}

#messageModal .form-check-label a {
    color: #05FC04 !important;
    text-decoration: underline !important;
}

#messageModal .form-check-label a:hover {
    color: #04D803 !important;
}

#messageModal .form-check-input:checked {
    background-color: #05FC04 !important;
    border-color: #05FC04 !important;
}

/* Modal footer */
#messageModal .modal-footer {
    background: transparent !important;
    border-top: 1px solid rgba(5, 252, 4, 0.2) !important;
    padding: 20px 30px !important;
}

/* Botão Close (secundário) */
#messageModal .btn-secondary {
    background-color: rgba(51, 51, 51, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    padding: 10px 25px !important;
    border-radius: 25px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}

#messageModal .btn-secondary:hover {
    background-color: rgba(68, 68, 68, 0.9) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-2px) !important;
}

/* Botão Send Message (primário) - Verde vibrante como no login */
#messageModal .btn-primary {
    background: #05FC04 !important;
    border: none !important;
    color: #000000 !important;
    padding: 12px 30px !important;
    border-radius: 25px !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(5, 252, 4, 0.3) !important;
}

#messageModal .btn-primary:hover {
    background: #04D803 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(5, 252, 4, 0.5) !important;
}

#messageModal .btn-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(5, 252, 4, 0.5) !important;
}

/* Overlay de fundo do modal */
.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.8) !important;
}

/* Animação de entrada do modal */
#messageModal .modal-dialog {
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translate(-50%, -60%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

/* ==========================================
   RESPONSIVE DESIGN - CARROSSEL OTIMIZADO
   ========================================== */

/* Desktop Grande (1400px+) - 4 carros visíveis */
@media (min-width: 1400px) {
    .featured-carousel-wrapper {
        max-width: 1400px;
    }
    .featured-car-item {
        width: 320px; /* 4 carros + margens = ~1400px */
    }
    .carousel-next {
        right: -80px;
    }
}

/* Desktop Padrão (1200px-1399px) - 4 carros visíveis */
@media (max-width: 1399px) and (min-width: 1200px) {
    .featured-carousel-wrapper {
        max-width: 1200px;
    }
    .featured-car-item {
        width: 280px; /* 4 carros menores */
        margin-right: 15px;
    }
    .carousel-next {
        right: -70px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Laptop/Tablet Grande (992px-1199px) - 3 carros visíveis */
@media (max-width: 1199px) and (min-width: 992px) {
    .featured-carousel-wrapper {
        max-width: 900px;
    }
    .featured-car-item {
        width: 280px; /* 3 carros */
        margin-right: 15px;
    }
    .carousel-next {
        right: -60px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Tablet (768px-991px) - 2 carros visíveis */
@media (max-width: 991px) and (min-width: 768px) {
    .featured-carousel-wrapper {
        max-width: 600px;
    }
    .featured-car-item {
        width: 280px; /* 2 carros */
        margin-right: 20px;
    }
    .featured-car-card {
        height: 380px;
    }
    .carousel-next {
        right: -50px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Mobile Grande (576px-767px) - 1 carro visível */
@media (max-width: 767px) and (min-width: 576px) {
    .featured-carousel-wrapper {
        max-width: 350px;
    }
    .featured-car-item {
        width: 320px; /* 1 carro */
        margin-right: 15px;
    }
    .featured-car-card {
        height: 360px;
    }
    .car-content {
        padding: 15px;
    }
    .car-title {
        font-size: 1.2rem;
    }
    .car-price {
        font-size: 1.4rem;
    }
    .carousel-next {
        right: -45px;
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Mobile Pequeno (<576px) - 1 carro visível */
@media (max-width: 575px) {
    .featured-carousel-wrapper {
        max-width: 300px;
    }
    .featured-car-item {
        width: 280px; /* 1 carro menor */
        margin-right: 10px;
    }
    .featured-car-card {
        height: 340px;
    }
    .car-image-wrapper {
        height: 160px;
    }
    .car-content {
        padding: 12px;
    }
    .car-title {
        font-size: 1.1rem;
    }
    .car-price {
        font-size: 1.2rem;
    }
    .view-details-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    .carousel-next {
        right: -40px;
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
}

/* Animações suaves */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Additional responsive adjustments */
@media (max-width: 768px) {
    .section-title::after {
        width: 60px;
        height: 3px;
    }
}

@media (max-width: 576px) {
    .section-title::after {
        width: 50px;
        height: 2px;
    }
}