/* ===== BOOTSTRAP CUSTOMIZATIONS FOR PARALLAX ESCOLAR ===== */

/* Custom Bootstrap Variables Override */
:root {
    --bs-primary: #667eea;
    --bs-primary-rgb: 102, 126, 234;
    --bs-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shadow-custom: 0 10px 30px rgba(102, 126, 234, 0.1);
    --shadow-hover: 0 15px 40px rgba(102, 126, 234, 0.15);
}

/* Typography */
body {
    font-family: 'Inter', sans-serif !important;
    line-height: 1.6;
}

/* ===== DEMO CAROUSEL STYLES ===== */
.demo-carousel-container {
    position: relative;
    width: 100%;
    max-width: 560px;
    /* 40% maior que 400px */
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
}

.demo-carousel {
    position: relative;
    width: 100%;
    height: 350px;
    /* 40% maior que 250px */
    background: #f8f9fa;
}

.demo-carousel img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Mudado de cover para contain para não cortar as imagens */
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.demo-carousel img.active {
    opacity: 1;
}

.demo-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.demo-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-indicator.active {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

.demo-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--bs-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0;
}

.demo-carousel-container:hover .demo-control {
    opacity: 1;
}

.demo-control:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.demo-control-prev {
    left: 10px;
}

.demo-control-next {
    right: 10px;
}

/* Loading placeholder */
.demo-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #6c757d;
}

.demo-loading i {
    font-size: 2rem;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .demo-carousel-container {
        max-width: 100%;
        height: 280px;
        /* 40% maior que 200px */
    }

    .demo-carousel {
        height: 280px;
        /* 40% maior que 200px */
    }

    .demo-control {
        width: 30px;
        height: 30px;
        font-size: 10px;
    }
}

/* ===== END DEMO CAROUSEL STYLES ===== */

/* Navbar Enhancements */
.navbar {
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    padding: 0.375rem 0;
    min-height: 50px;
    background-color: rgba(255, 255, 255, 0.95) !important;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0.25rem 0;
    min-height: 45px;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.25rem 0;
}

/* Desktop Logo Styling */
.logo-desktop {
    height: 160px;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo-desktop {
    height: 0 !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--bs-primary) !important;
}

.navbar-nav .nav-link.active {
    color: var(--bs-primary) !important;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

/* Desktop-specific navbar adjustments */
@media (min-width: 992px) {
    .navbar {
        padding: 0.25rem 0;
        min-height: 48px;
    }

    .navbar.scrolled {
        padding: 0.125rem 0;
        min-height: 42px;
    }

    .navbar-nav .nav-link {
        padding: 0.5rem 1rem !important;
        font-size: 0.95rem;
    }

    .navbar-brand {
        padding: 0.125rem 0;
    }

    /* Navbar layout: Logo left, Menu center, Button right */
    .navbar .navbar-collapse {
        flex-grow: 1;
        display: flex !important;
        align-items: center;
    }

    .navbar .navbar-nav.mx-auto {
        flex-grow: 0;
        margin: 0 auto !important;
    }

    .navbar .btn.ms-auto {
        margin-left: auto !important;
        flex-shrink: 0;
    }

    /* Adjust hero section padding for smaller header */
    .hero-section {
        padding-top: 120px;
        min-height: 100vh;
    }
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--bs-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

/* Button Enhancements */
.btn-primary {
    background: var(--bs-gradient);
    border: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background: var(--bs-gradient);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

/* Hero Section */
.hero-section {
    background: var(--bs-gradient);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Cards */
.card {
    border-radius: 1rem;
    transition: all 0.3s ease;
    border: none;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.shadow-custom {
    box-shadow: var(--shadow-custom);
}

/* Section Padding */
.section-padding {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

/* Fix for sections with background that might overlap */
.bg-light {
    position: relative;
    z-index: 1;
}

/* Ensure proper section separation */
section {
    clear: both;
    overflow: hidden;
}

/* Badge Styling */
.badge {
    font-weight: 600;
    font-size: 0.875rem;
}

/* Utilities */
.text-gradient {
    background: var(--bs-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modules section styling */
.modulos__panels {
    position: relative;
    min-height: 450px;
    margin-top: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
    overflow: hidden;
}

.modulos__panel {
    display: none;
    opacity: 0;
    transition: all 0.4s ease-in-out;
    padding: 3rem 2rem;
    height: 100%;
    min-height: 450px;
    width: 100%;
}

.modulos__panel.active {
    display: block;
    opacity: 1;
}

/* Tab styling improvements */
.modulos__tab {
    border: 2px solid transparent !important;
    transition: all 0.3s ease !important;
    font-weight: 500;
    padding: 0.75rem 1.25rem;
}

.modulos__tab:hover {
    background-color: rgba(102, 126, 234, 0.1) !important;
    border-color: var(--bs-primary) !important;
    transform: translateY(-2px);
}

.modulos__tab.active {
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.modulos__panel-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
    height: 100%;
    max-width: 100%;
}

.modulos__panel-info {
    padding-right: 1rem;
    height: auto;
    overflow: visible;
}

.modulos__panel-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.modulos__panel-description {
    color: #495057;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 400;
}

.modulos__panel-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: none;
    overflow: visible;
}

.modulos__panel-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    font-size: 1rem;
    color: #495057;
    line-height: 1.6;
    font-weight: 400;
}

.modulos__panel-list i {
    color: #28a745;
    margin-right: 1rem;
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.modulos__panel-img {
    text-align: center;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modulos__panel-img i {
    font-size: 6rem;
    color: var(--bs-primary);
    opacity: 0.3;
}

/* Mobile adjustments for modules */
@media (max-width: 768px) {
    .modulos__panels {
        min-height: auto;
        margin-top: 1.5rem;
    }

    .modulos__panel {
        padding: 2rem 1.5rem;
        min-height: auto;
    }

    .modulos__panel-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .modulos__panel-info {
        padding-right: 0;
        text-align: left;
    }

    .modulos__panel-img i {
        font-size: 4rem;
    }

    .modulos__panel-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .modulos__panel-description {
        text-align: center;
        font-size: 1rem;
    }

    .modulos__panel-list {
        text-align: left;
        max-width: 100%;
    }

    /* Tab adjustments for mobile */
    .nav-pills .nav-item {
        margin: 0.25rem !important;
    }

    .modulos__tab {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Mobile Carousel Styles */
.modulos__carousel-slide {
    background: white;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
    margin: 0 0.5rem;
    min-height: 450px;
}

.modulos__carousel-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bs-primary), #8b5cf6);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.2);
}

.modulos__carousel-icon i {
    font-size: 2.5rem;
    color: white;
}

.modulos__carousel-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    text-align: center;
}

.modulos__carousel-description {
    color: #495057;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

.modulos__carousel-content {
    text-align: left;
}

.modulos__carousel-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modulos__carousel-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
    color: #495057;
    line-height: 1.5;
}

.modulos__carousel-list i {
    color: #28a745;
    margin-right: 0.75rem;
    font-size: 0.875rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

/* Carousel Controls Styling */
#modulosCarousel .carousel-control-prev,
#modulosCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
    transition: all 0.3s ease;
}

#modulosCarousel .carousel-control-prev:hover,
#modulosCarousel .carousel-control-next:hover {
    background: var(--bs-primary);
    opacity: 1;
}

#modulosCarousel .carousel-control-prev {
    left: -25px;
}

#modulosCarousel .carousel-control-next {
    right: -25px;
}

#modulosCarousel .carousel-control-prev-icon,
#modulosCarousel .carousel-control-next-icon {
    background-size: 20px 20px;
}

/* Carousel Indicators */
#modulosCarousel .carousel-indicators {
    margin-bottom: -2rem;
    position: static;
    margin-top: 2rem;
}

#modulosCarousel .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(102, 126, 234, 0.3);
    border: none;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
}

#modulosCarousel .carousel-indicators [data-bs-target].active {
    background-color: var(--bs-primary);
    transform: scale(1.2);
}

/* Small mobile adjustments */
@media (max-width: 480px) {
    .modulos__carousel-slide {
        padding: 1.5rem 1rem;
        margin: 0 0.25rem;
        min-height: 400px;
    }

    .modulos__carousel-icon {
        width: 80px;
        height: 80px;
    }

    .modulos__carousel-icon i {
        font-size: 2rem;
    }

    .modulos__carousel-title {
        font-size: 1.25rem;
    }

    .modulos__carousel-description {
        font-size: 0.95rem;
    }

    .modulos__carousel-list li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    #modulosCarousel .carousel-control-prev,
    #modulosCarousel .carousel-control-next {
        width: 40px;
        height: 40px;
        display: none;
        /* Hide on very small screens, use swipe instead */
    }
}

/* Ensure carousel is properly hidden on desktop */
@media (min-width: 768px) {
    #modulosCarousel {
        display: none !important;
    }
}

/* Planos Carousel Styles */
.planos__carousel-slide {
    padding: 0 1rem;
    height: 100%;
}

.planos__carousel-slide .planos__card {
    height: auto;
    min-height: 500px;
    margin: 0;
    width: 100%;
}

/* Planos Carousel Controls Styling */
#planosCarousel .carousel-control-prev,
#planosCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
    transition: all 0.3s ease;
}

#planosCarousel .carousel-control-prev:hover,
#planosCarousel .carousel-control-next:hover {
    background: var(--bs-primary);
    opacity: 1;
}

#planosCarousel .carousel-control-prev {
    left: -25px;
}

#planosCarousel .carousel-control-next {
    right: -25px;
}

#planosCarousel .carousel-control-prev-icon,
#planosCarousel .carousel-control-next-icon {
    background-size: 20px 20px;
}

/* Planos Carousel Indicators */
#planosCarousel .carousel-indicators {
    margin-bottom: -2rem;
    position: static;
    margin-top: 2rem;
}

#planosCarousel .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(102, 126, 234, 0.3);
    border: none;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
}

#planosCarousel .carousel-indicators [data-bs-target].active {
    background-color: var(--bs-primary);
    transform: scale(1.2);
}

/* Responsive grid for desktop planos */
.planos__content.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .planos__content.grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Mobile adjustments for planos carousel */
@media (max-width: 480px) {
    .planos__carousel-slide {
        padding: 0 0.5rem;
    }

    .planos__carousel-slide .planos__card {
        min-height: 450px;
    }

    #planosCarousel .carousel-control-prev,
    #planosCarousel .carousel-control-next {
        width: 40px;
        height: 40px;
        display: none;
        /* Hide on very small screens, use swipe instead */
    }
}

/* Ensure planos carousel is properly hidden on desktop */
@media (min-width: 768px) {
    #planosCarousel {
        display: none !important;
    }

    .planos__content.d-none.d-md-grid {
        display: grid !important;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 80px;
        min-height: auto;
    }

    .section-padding {
        padding: 60px 0;
    }

    /* Ensure proper spacing between sections on mobile */
    section+section {
        margin-top: 2rem;
    }

    .display-4,
    .display-5 {
        font-size: 2rem;
    }

    .navbar-nav .nav-link span {
        font-size: 0.875rem;
    }

    .hero-image .rounded-circle {
        width: 200px !important;
        height: 200px !important;
    }

    .hero-image i {
        font-size: 4rem !important;
    }
}

@media (max-width: 576px) {
    .btn-lg {
        padding: 0.75rem 1.25rem;
        font-size: 1rem;
    }

    .display-4,
    .display-5 {
        font-size: 1.75rem;
    }

    .lead {
        font-size: 1rem;
    }

    .hero-image .rounded-circle {
        width: 150px !important;
        height: 150px !important;
    }

    .hero-image i {
        font-size: 3rem !important;
    }

    .card {
        margin-bottom: 1rem;
    }
}

/* Fixed navbar spacing */
@media (min-width: 992px) {
    body {
        padding-top: 60px;
    }
}

@media (max-width: 991.98px) {
    body {
        padding-top: 60px;
    }
}

/* Navbar toggler custom styling */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Mobile navbar adjustments */
@media (max-width: 991.98px) {
    .navbar {
        padding: 0.75rem 0;
    }

    .navbar .container {
        justify-content: center;
    }

    .navbar-toggler {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Center the collapsed menu content */
    .navbar-collapse {
        text-align: center;
        margin-top: 1rem;
    }
}

/* Enhanced navbar collapse animation */
.navbar-collapse {
    transition: all 0.3s ease-in-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading states */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.2rem;
    height: 1.2rem;
    margin-top: -0.6rem;
    margin-left: -0.6rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Accessibility improvements */
.btn:focus,
.nav-link:focus {
    outline: 2px solid var(--bs-primary);
    outline-offset: 2px;
}

/* Speed Dial Floating Action Button */
.speed-dial {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1050;
}

.speed-dial-main-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bs-gradient);
    border: none;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1051;
}

.speed-dial-main-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(102, 126, 234, 0.6);
}

.speed-dial-main-btn.active {
    transform: rotate(45deg);
}

.speed-dial-options {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(20px);
}

.speed-dial-options.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.speed-dial-option {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transform: scale(0);
    animation: scaleIn 0.3s ease forwards;
}

.speed-dial-options.active .speed-dial-option {
    transform: scale(1);
}

.speed-dial-option:nth-child(1) {
    animation-delay: 0.1s;
}

.speed-dial-option:nth-child(2) {
    animation-delay: 0.2s;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: white;
}

.contact-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.contact-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 107, 107, 0.6);
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Speed Dial Responsive */
@media (max-width: 768px) {
    .speed-dial {
        bottom: 20px;
        right: 20px;
    }

    .speed-dial-main-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .speed-dial-option {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .speed-dial-options {
        bottom: 65px;
    }
}

/* Remove fixed navbar styles since it's no longer fixed */
@media (min-width: 992px) {
    body {
        padding-top: 0;
    }
}

@media (max-width: 991.98px) {
    body {
        padding-top: 0;
    }
}

/* Print styles */
@media print {

    .navbar,
    .btn,
    .hero-section::before,
    .speed-dial {
        display: none !important;
    }

    body {
        padding-top: 0 !important;
    }

    .hero-section {
        background: white !important;
        color: black !important;
    }
}