
/* ========== VARIÁVEIS E RESET ========== */
:root {
    --primary: #e4011b;
    --primary-dark: #b3010f;
    --primary-light: #ff1a33;
    --secondary: #1a1d23;
    --bg-dark: #0f1115;
    --bg-card: #1e2127;
    --bg-hover: #252930;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #e4011b;
    --dark: #0f1115;
    --light: #f8fafc;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --text-primary: #f9fafb;
    --text-secondary: #d1d5db;
    --text-muted: #9ca3af;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6), 0 10px 10px -5px rgba(0, 0, 0, 0.5);
    --radius: 0.5rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --width: 1100px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #0f1115 0%, #1a1d23 100%);
    color: var(--text-secondary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ========== NAVEGAÇÃO ========== */
nav {
    background: rgba(26, 29, 35, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

nav a {
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    transition: var(--transition);
}

nav a:hover {
    background: rgba(228, 1, 27, 0.15);
    color: var(--primary);
    transform: translateY(-2px);
}

nav span {
    color: var(--primary);
    font-weight: 700;
}

nav form {
    display: inline;
}

nav button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

nav button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ========== MAIN CONTENT ========== */
main {
    max-width: 1400px;
    margin: auto;
    padding: 0 2rem;
}

h1,
h2,
h3,
h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 800;
}

h1 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 1.875rem;
    color: var(--text-primary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* ========== MENSAGENS DJANGO ========== */
.django-message {
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    animation: slideIn 0.4s ease-out;
    box-shadow: var(--shadow);
    font-weight: 500;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


#menu-hero {
    width: 100%;
    background-color: red;
    height: 500px;
}









/* ========== CARDS E CONTAINERS ========== */
.card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}


.admin-panel {
    background: linear-gradient(135deg, rgba(30, 33, 39, 0.8) 0%, rgba(26, 29, 35, 0.6) 100%);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow);
}

.cta-box {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #1f2125 0%, #111316 100%);
    border: 3px dashed var(--primary);
    border-radius: var(--radius);
    margin: 2rem 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

/* ========== BOTÕES ========== */
button,
.btn,
input[type="submit"] {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    box-shadow: var(--shadow);
    text-decoration: none;
    display: inline-block;
}

button:hover,
.btn:hover,
input[type="submit"]:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--secondary);
}

.btn-success {
    background: var(--success);
}

.btn-warning {
    background: var(--warning);
}

.btn-danger {
    background: var(--danger);
}

a.btn {
    color: white;
}

/* ========== FORMULÁRIOS ========== */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="url"],
textarea,
select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(228, 1, 27, 0.3);
    background: var(--bg-dark);
    color: var(--text-primary);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
    margin-bottom: 1rem;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(228, 1, 27, 0.2);
    background: var(--bg-card);
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

form p {
    margin-bottom: 1.5rem;
}

/* ========== TABELAS ========== */
table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

thead {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

th {
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

td {
    padding: 1rem;
    border-bottom: 1px solid rgba(228, 1, 27, 0.1);
    color: var(--text-secondary);
}


/* ========== LISTAS ========== */
ul {
    list-style: none;
    padding: 0;
}

ul li {
    background: var(--bg-card);
    border: 1px solid rgba(228, 1, 27, 0.1);
    padding: 1.25rem;
    margin-bottom: 0.75rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

ul li:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(228, 1, 27, 0.3);
    background: var(--bg-hover);
}

/* ========== MODAIS ========== */
.modal-overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-overlay>div {
    background: var(--bg-card);
    border: 1px solid rgba(228, 1, 27, 0.2);
    padding: 2.5rem;
    border-radius: var(--radius);
    width: 90%;
    max-width: 500px;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.3s ease-out;
    position: relative;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-overlay span[onclick] {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--gray-600);
    transition: var(--transition);
}

.modal-overlay span[onclick]:hover {
    color: var(--danger);
    transform: rotate(90deg);
}

/* ========== CHAT ========== */
/* ========== CHAT ESTILO WHATSAPP ========== */
.chat-box-whatsapp {
    flex-grow: 1;
    min-height: 500px;
    max-height: 700px;
    overflow-y: auto;
    background: linear-gradient(135deg, #0a0c0f 0%, #151820 100%);
    padding: 1.5rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5);
}

.whatsapp-msg {
    display: flex;
    flex-direction: column;
    max-width: 65%;
    word-break: break-word;
    animation: messageSlideIn 0.3s ease-out;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.whatsapp-msg-received {
    align-self: flex-start;
}

.whatsapp-msg-sent {
    align-self: flex-end;
}

.whatsapp-msg-sender {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    padding-left: 0.75rem;
}

.whatsapp-msg-text {
    background: var(--bg-card);
    color: var(--text-secondary);
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    box-shadow: var(--shadow);
    position: relative;
}

.whatsapp-msg-received .whatsapp-msg-text {
    background: var(--bg-card);
    border-bottom-left-radius: 0.2rem;
    border-left: 3px solid var(--primary);
}

.whatsapp-msg-sent .whatsapp-msg-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    border-bottom-right-radius: 0.2rem;
    font-weight: 500;
}

.chat-input-form {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.chat-input-form input {
    flex-grow: 1;
    padding: 0.875rem 1.25rem;
    border-radius: 2rem;
    border: 1.5px solid rgba(228, 1, 27, 0.3);
    background: var(--bg-dark);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.chat-input-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(228, 1, 27, 0.15);
    background: var(--bg-card);
}

.chat-input-form button {
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.chat-input-form button:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.chat-input-form button:active {
    transform: scale(0.95);
}

/* ========== PÁGINA DE HACKATHON ========== */
.hackathon-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.hackathon-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.hackathon-header h1 {
    margin: 0 0 0.5rem 0;
}

.hackathon-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
}

.badge-status {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow);
}

.btn-disabled {
    background: var(--gray-600);
    color: var(--gray-300);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: not-allowed;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-form {
    display: inline-flex;
    gap: 1rem;
    align-items: center;
}

.timer-box {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-dark) 100%);
    padding: 2.5rem;
    border-radius: var(--radius);
    text-align: center;
    margin-bottom: 2rem;
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-xl);
}

.finished-box {
    background: linear-gradient(135deg, rgba(228, 1, 27, 0.1) 0%, rgba(228, 1, 27, 0.05) 100%);
    padding: 2.5rem;
    border-radius: var(--radius);
    text-align: center;
    margin-bottom: 2rem;
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-lg);
}

.row-highlight {
    background: rgba(228, 1, 27, 0.08) !important;
}

.hackathon-main-grid {
    display: grid;
    grid-template-columns: 2fr 650px;
    gap: 2rem;
    margin-top: 2rem;
}

.submission-card {
    background: var(--bg-card);

    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.submission-card h3 {
    margin-bottom: 1.5rem;
}

.submission-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.chat-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-xl);
    min-height: 600px;
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(228, 1, 27, 0.2);
}

.success-message {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    border-left: 3px solid var(--success);
}



.django-message-error {
    background: rgba(228, 1, 27, 0.15);
    color: var(--primary);
    border-left: 4px solid var(--primary);
}

.django-message-success {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
    border-left: 4px solid var(--success);
}

/* Responsivo */
@media (max-width: 1200px) {
    .hackathon-main-grid {
        grid-template-columns: 1fr;
    }

    .chat-card {
        min-height: 500px;
    }

    .chat-box-whatsapp {
        min-height: 400px;
        max-height: 500px;
    }
}

@media (max-width: 768px) {
    .hackathon-page {
        padding: 1rem;
    }

    .hackathon-header {
        flex-direction: column;
        gap: 1rem;
    }

    .hackathon-actions {
        align-items: flex-start;
        width: 100%;
    }

    .whatsapp-msg {
        max-width: 85%;
    }

    .chat-box-whatsapp {
        min-height: 300px;
        padding: 1rem;
    }
}

/* ========== CRONÔMETRO ========== */
#contagem {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-dark) 100%);
    color: var(--primary);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    font-size: 4rem;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--primary);
    text-shadow: 0 0 20px rgba(228, 1, 27, 0.8);
}

/* ========== UTILITÁRIOS ========== */
.text-center {
    text-align: center;
}

.text-white {
    color: white;
}

.text-primary {
    color: var(--text-primary);
}

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

.text-muted {
    color: var(--text-muted);
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.p-2 {
    padding: 1rem;
}

/* Cards claros para destaque */
.card-light {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

/* Strong tags em modo escuro */
strong {
    color: var(--text-primary);
}

/* ========== RESPONSIVO ========== */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    main {
        padding: 0 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .card {
        padding: 1.5rem;
    }

    table {
        font-size: 0.875rem;
    }

    th,
    td {
        padding: 0.75rem;
    }
}

/* ========== CARROSSEL ========== */

#menu-hero {
    position: relative;
    left: 50%;
    right: 50%;
    width: 100vw;
    min-width: 100vw;
    max-width: 100vw;
    transform: translateX(-50%);
    margin: 0 0 2rem 0;
    padding: 0;
    background: var(--bg-dark);
    height: 700px;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    background: #000;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-slide img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.carousel-title-area {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    width: 100%;
    padding: 2rem;
    text-align: left;
    color: white;
}

.carousel-title-1 {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.carousel-title-2 {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    max-width: 800px;
}

.carousel-title-1 strong {
    color: #e4011b;
}

.carousel-btn {
    position: absolute;
    background-color: rgba(107, 114, 128, 0.5);
    top: 50%;
    transform: translateY(-50%);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border-radius: 8px;
    width: 40px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
}

.carousel-btn:hover {
    background-color: rgba(55, 65, 81, 0.8);
    transform: translateY(-50%) scale(1.05);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

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

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background: var(--primary);
    width: 40px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .carousel-container {
        height: 400px;
    }

    .carousel-title-area {
        padding: 1rem;
    }

    .carousel-title-1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .carousel-title-2 {
        font-size: 0.9rem;
    }

    .carousel-btn {
        width: 40px;
        height: 60px;
        font-size: 1.2rem;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot.active {
        width: 30px;
    }
}


#banner-footer {
    position: relative;
    width: 100%;
    height: 200px;
    /* Ajuste a altura conforme necessário */
    /* Fundo escuro conforme a imagem */
    overflow: hidden;
    /* Esconde o que sai da tela */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* O Wrapper que inclina todo o conteúdo */
.tumbled-wrapper {
    display: flex;
    gap: 20px;
    /* Espaço entre as colunas */
    /* A mágica acontece aqui: Rotaciona e escala para cobrir as bordas */
    /* transform: rotate(-15deg) scale(1.3); */
    transform: rotateX(60deg) rotateZ(-45deg);
    flex-shrink: 0;
}

/* Colunas individuais */
.scrolling-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* Espaço entre os cards verticais */
    width: 450px;
    /* Largura dos cards */
}

/* Estilo dos Cards (Imagens) */
.card-image {
    width: 100%;
    height: 350px;
    /* Altura do card */
    background-color: #1e293b;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transition: transform 0.3s ease;

    /* Placeholder para imagem */
    background-position: center;
    background-size: cover;
    position: relative;
}

/* Efeito de hover opcional */
.card-image:hover {
    transform: scale(1.02);
    z-index: 10;
    box-shadow: 0 0 20px rgba(100, 100, 255, 0.4);
}

/* Label apenas para visualização (pode remover) */
.card-placeholder-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-family: sans-serif;
    font-size: 14px;
    font-weight: bold;
}

/* --- ANIMAÇÕES --- */

/* Animação para CIMA */
.col-up {
    animation: scrollUp 800s linear infinite;
    margin-top: 1000px;

}

/* Animação para BAIXO */
.col-down {
    animation: scrollDown 800s linear infinite;
    margin-top: 1500px;
}

/* Keyframes */
/* Importante: O HTML das imagens deve ser duplicado para o loop perfeito */
@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes scrollDown {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
    }
}

/* Máscara de gradiente para suavizar topo e base (opcional) */
#banner-footer::after {
    content: '';
    position: absolute;
    inset: 0;

    pointer-events: none;
    z-index: 5;
}

.banner-footer-title {
    height: 100%;
    width: 100%;
    padding: 0px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.banner-footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.85;
    z-index: 2;
    pointer-events: none;
}
.banner-footer-section {
    position: relative;
    /* ...existing code... */
}
.banner-footer-section {
    position: relative;
    left: 50%;
    right: 50%;
    width: 100vw;
    min-width: 100vw;
    max-width: 100vw;
    transform: translateX(-50%);
    padding: 0;
    background: transparent;
    overflow: visible;
}



