/* ====================================
   CAMPO SEGURO 18 - Padronizado CRONUS
   Estilos Personalizados (Conforme CRONUS)
   ==================================== */

:root {
    --cronus-black: #0b0b0b;
    --cronus-gold: #c5a15a;
    --cronus-gold-light: #e1c07a;
    --cronus-red: #b81f24;
}

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

html, body {
    height: 100%;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f5f5f5;
}

a {
    color: var(--cronus-black);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* ========== NAVBAR ========== */
.navbar {
    background: linear-gradient(135deg, var(--cronus-black) 0%, #1a1a1a 100%) !important;
    padding: 0 !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 2px solid var(--cronus-gold);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    color: var(--cronus-gold) !important;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.navbar-brand img {
    height: auto;
    width: 50px;
    object-fit: contain;
}

.navbar-nav .nav-link {
    color: #fff !important;
    margin: 0 10px;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    padding: 8px 0 !important;
}

.navbar-nav .nav-link:hover {
    color: var(--cronus-gold) !important;
    border-bottom-color: var(--cronus-gold);
}

.navbar-nav .nav-link.active {
    color: var(--cronus-gold) !important;
    border-bottom-color: var(--cronus-gold);
}

.navbar-dark .navbar-toggler {
    border-color: var(--cronus-gold);
}

.navbar-dark .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='%23c5a15a' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========== HERO SECTION ========== */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/hero-background.png') center/cover no-repeat;
    background-attachment: fixed;
    color: #fff;
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h1.hero-title {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--cronus-gold);
    font-weight: 700;
    line-height: 1.2;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== BUTTONS ========== */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--cronus-black);
    color: white;
    border-color: var(--cronus-black);
}

.btn-primary:hover {
    background: #2d2d2d;
    border-color: #2d2d2d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-warning {
    background: var(--cronus-gold);
    color: var(--cronus-black);
    border-color: var(--cronus-gold);
}

.btn-warning:hover {
    background: var(--cronus-gold-light);
    border-color: var(--cronus-gold-light);
    color: var(--cronus-black);
    transform: translateY(-2px);
}

.btn-danger {
    background: var(--cronus-red);
    color: white;
    border-color: var(--cronus-red);
}

.btn-danger:hover {
    background: #9e1820;
    border-color: #9e1820;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #6c757d;
    color: white;
    border-color: #6c757d;
}

.btn-secondary:hover {
    background: #5a6268;
    border-color: #5a6268;
}

.btn-success {
    background: #27ae60;
    color: white;
    border-color: #27ae60;
}

.btn-success:hover {
    background: #1e8449;
    border-color: #1e8449;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* ========== CARDS ========== */
.card {
    background: #fff;
    border: 3px solid transparent;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    min-height: 350px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(#fff, #fff) padding-box,
                linear-gradient(135deg, var(--cronus-gold), #27ae60) border-box;
}

.card .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
}

.card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    min-height: 2.6rem;
    margin-bottom: 0.5rem;
}

.card .card-text {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
    flex-grow: 1;
    display: flex;
    align-items: center;
    min-height: 4rem;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    border-color: var(--cronus-gold);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.card:hover::before {
    left: 100%;
}

.card-img-top {
    height: 250px;
    object-fit: cover;
}

.card-header {
    border-bottom: 2px solid var(--cronus-gold) !important;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
    font-weight: 600;
    padding: 12px 16px;
    font-size: 0.9rem;
    color: var(--cronus-black) !important;
}

.card-header h5,
.card-header h6,
.card-header p,
.card-header span,
.card-header a {
    color: var(--cronus-black) !important;
    background: transparent !important;
}

.card-header i {
    color: var(--cronus-gold) !important;
}

.card-body {
    padding: 20px;
    font-size: 0.9rem;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.video-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-title {
    color: var(--cronus-black);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.card-text {
    color: #666;
    line-height: 1.7;
}

/* ========== BANNER SECTION ========== */
.banner-section {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

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

.banner-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

/* ========== SECTIONS ========== */
.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--cronus-black);
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--cronus-gold);
    border-radius: 2px;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 40px;
}

/* ========== NOTÍCIAS GRID ========== */
.noticias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.noticia-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.noticia-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 2px solid transparent;
}

.noticia-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--cronus-gold);
}

.noticia-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.noticia-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.noticia-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--cronus-black);
    margin-bottom: 10px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3.9rem;
}

.noticia-chamada {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 15px;
    flex-grow: 1;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.noticia-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #dee2e6;
    font-size: 0.75rem;
    color: #999;
}

.noticia-date {
    color: var(--cronus-gold);
    font-weight: 600;
}

/* ========== CAROUSEL ========== */
.carousel {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-item img {
    height: 500px;
    object-fit: cover;
}

/* ========== FOOTER ========== */
footer {
    background: var(--cronus-black);
    color: #fff;
    padding: 20px 0;
    margin-top: 40px;
    text-align: left;
    font-size: 0.85rem;
}

footer img {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
}

footer h5 {
    color: var(--cronus-gold);
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

footer a {
    color: #bbb;
    font-size: 0.85rem;
}

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

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 4px;
    font-size: 0.8rem;
}

.footer-divider {
    border-top: 1px solid rgba(197, 161, 90, 0.2);
    margin: 10px 0;
    padding-top: 10px;
}

.footer-bottom {
    text-align: left;
    color: #888;
    font-size: 0.8rem;
}

footer .fw-bold {
    font-size: 0.75rem;
    margin-bottom: 2px;
}

footer .small {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ========== ADMIN LAYOUT ========== */
.admin-container {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background: #f0f0f0;
    border-right: 2px solid var(--cronus-gold);
    color: #333;
    padding: 20px 0;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.05);
    z-index: 999;
    flex-shrink: 0;
}

.admin-sidebar::-webkit-scrollbar {
    width: 6px;
}

.admin-sidebar::-webkit-scrollbar-track {
    background: rgba(197, 161, 90, 0.1);
}

.admin-sidebar::-webkit-scrollbar-thumb {
    background: var(--cronus-gold);
    border-radius: 3px;
}

.admin-sidebar h5 {
    color: var(--cronus-gold);
    padding: 15px 20px;
    margin: 0;
    font-weight: 600;
    border-bottom: 1px solid rgba(197, 161, 90, 0.2);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.admin-sidebar ul {
    list-style: none;
}

.admin-sidebar li {
    margin: 0;
}

.admin-sidebar a {
    display: block;
    color: #495057;
    padding: 10px 16px;
    margin: 2px 10px;
    border-radius: 8px;
    transition: all 0.2s;
    font-size: 0.85rem;
    font-weight: 500;
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
    background: linear-gradient(135deg, var(--cronus-black) 0%, #2d2d2d 100%);
    color: white;
    border-left: 3px solid var(--cronus-gold);
    padding-left: 13px;
}

.admin-content {
    margin-left: 260px;
    flex-grow: 1;
    background: #E6E6E6;
}

.admin-header {
    background: #fff;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--cronus-gold);
}

.admin-body {
    padding: 30px;
}

/* ========== FORMS ========== */
.form-group {
    margin-bottom: 20px;
}

label {
    font-weight: 600;
    color: var(--cronus-black);
    margin-bottom: 8px;
    display: block;
    font-size: 0.85rem;
}

.form-control,
.form-select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    outline: none;
    border-color: var(--cronus-gold);
    box-shadow: 0 0 0 0.2rem rgba(197, 161, 90, 0.25);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.form-control-file {
    padding: 10px 0;
}

.file-input-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
    width: 100%;
}

.file-input-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border: 2px dashed var(--cronus-gold);
    border-radius: 8px;
    background: rgba(197, 161, 90, 0.05);
    transition: all 0.3s ease;
}

.file-input-label:hover {
    border-color: var(--cronus-gold-light);
    background: rgba(197, 161, 90, 0.1);
}

.file-input-label i {
    margin-right: 10px;
    color: var(--cronus-gold);
}

input[type="file"] {
    display: none;
}

/* ========== TABLES ========== */
.table {
    background: white;
    font-size: 0.85rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.table thead th {
    border-bottom: 2px solid #dee2e6;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    color: #495057;
    padding: 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.table tbody tr {
    transition: background 0.2s;
}

.table tbody tr:hover {
    background: #f8f9fa;
}

.table td {
    padding: 10px 12px;
    border-top: 1px solid #dee2e6;
}

.table-actions {
    display: flex;
    gap: 5px;
}

.table-actions .btn {
    padding: 6px 12px;
    font-size: 0.85rem;
}

/* ========== BADGES ========== */
.badge {
    padding: 5px 10px;
    font-weight: 500;
    border-radius: 6px;
    font-size: 0.75rem;
    display: inline-block;
}

.badge-primary {
    background: var(--cronus-black);
    color: #fff;
}

.badge-success {
    background: #27ae60;
    color: #fff;
}

.badge-warning {
    background: var(--cronus-gold);
    color: var(--cronus-black);
}

.badge-danger {
    background: var(--cronus-red);
    color: #fff;
}

/* ========== ALERTS ========== */
.alert {
    border-radius: 10px;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    font-size: 0.9rem;
    padding: 15px 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
    border-left: 4px solid #ffc107;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border-left: 4px solid #17a2b8;
}

/* ========== HEADINGS ========== */
h1, h2, h3, h4, h5, h6 {
    color: var(--cronus-black);
    font-weight: 700;
}

h1 { font-size: 1.5rem; }
h2 { font-size: 1.3rem; }
h3 { font-size: 1.1rem; }
h4 { font-size: 1rem; }
h5 { font-size: 0.95rem; }
h6 { font-size: 0.9rem; }

/* ========== LOADING & SPINNER ========== */
.spinner {
    border: 4px solid rgba(197, 161, 90, 0.1);
    border-top: 4px solid var(--cronus-gold);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

.card {
    animation: fadeIn 0.5s ease-out;
}

/* ========== GRADIENTS ========== */
.bg-gradient {
    background: linear-gradient(135deg, var(--cronus-black) 0%, #2d2d2d 100%);
}

/* ========== IMAGE UPLOAD PREVIEW ========== */
.upload-preview {
    max-width: 200px;
    max-height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* ========== UTILITIES ========== */
.text-gold {
    color: var(--cronus-gold);
}

.text-red {
    color: var(--cronus-red);
}

.bg-gold {
    background: var(--cronus-gold);
    color: var(--cronus-black);
}

.border-gold {
    border-color: var(--cronus-gold) !important;
}

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

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

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

.p-20 {
    padding: 20px;
}

.rounded {
    border-radius: 8px;
}

.shadow {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hidden {
    display: none;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .noticias-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
        color: #ffffff;
        font-weight: 700;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .hero h1.hero-title {
        color: #ffffff;
        font-weight: 700;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .hero-subtitle {
        font-size: 1rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

    .section-subtitle {
        font-size: 1rem;
    }

    .card {
        min-height: 300px;
        display: flex;
        flex-direction: column;
    }

    .card-body {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .card-text {
        font-size: 0.9rem;
    }

    .admin-sidebar {
        width: 100%;
        height: auto;
        max-height: 80vh;
        border-right: none;
        border-bottom: 2px solid var(--cronus-gold);
        overflow-y: auto;
        position: relative;
    }

    .admin-content {
        margin-left: 0;
    }

    .admin-sidebar ul {
        display: flex;
        flex-wrap: wrap;
    }

    .admin-sidebar li {
        flex: 1;
        min-width: 150px;
    }

    .admin-sidebar a {
        text-align: center;
        padding: 10px 15px;
        margin: 2px 5px;
    }

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

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

    .banner-content h2 {
        font-size: 1.8rem;
    }

    .carousel-item img {
        height: 300px;
    }

    .hero {
        padding: 60px 15px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section {
        padding: 40px 0;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .navbar-brand {
        font-size: 0.9rem;
    }

    .navbar-nav .nav-link {
        font-size: 0.85rem;
        margin: 0 5px;
    }
}

/* ========== PRINT STYLES ========== */
@media print {
    .navbar,
    .admin-sidebar,
    footer,
    .btn,
    .no-print {
        display: none !important;
    }

    .admin-content {
        margin-left: 0;
    }

    .card {
        box-shadow: none;
        border: 1px solid #dee2e6;
    }
}

/* ========== FORÇAR CARD-HEADERS CORRETOS ========== */
.card-header {
    background-color: #f8f9fa !important;
    background-image: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
    color: #0b0b0b !important;
}

.card-header * {
    color: #0b0b0b !important;
    background: transparent !important;
}

.card-header i {
    color: #c5a15a !important;
}

.card-header h1,
.card-header h2,
.card-header h3,
.card-header h4,
.card-header h5,
.card-header h6 {
    color: #0b0b0b !important;
}
/* Correção para texto do hero em telas pequenas */
@media (max-width: 768px) {
  .hero {
    background-size: contain !important; /* mostra a imagem inteira no celular */
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: #000; /* fundo neutro quando faltar espaço */
    padding: 40px 18px !important;
  }

  .hero-content {
    padding: 0 10px;
    text-align: center;
  }

  .hero-title {
    font-size: 1.6rem !important;
    line-height: 1.2 !important;
  }

  .hero-subtitle {
    font-size: 1rem !important;
    line-height: 1.5 !important;
    max-width: 90%;
    margin: 0 auto;
    color: #fff !important;
  }
}
