/* ============================================
   TEMA DARK - BASE
   TechCraftBrasil - Minecraft Server Store
   ============================================ */

:root {
    --site-bg: #0d1118;
    --site-surface: #151b25;
    --site-surface-strong: #1c2634;
    --site-border: rgba(255, 255, 255, 0.1);
    --site-text: #f5f7fb;
    --site-text-soft: #aab6c8;
    --site-muted: #748197;
    --site-accent: #31d7a9;
    --site-accent-strong: #19b88b;
    --site-danger: #ff5c7a;
    --site-warning: #ffd166;
    --site-info: #66c7ff;
    --site-radius: 8px;
    --site-shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
}

/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #0a0c12;
    color: #e8eaed;
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

hr {
    border: none;
    height: 1px;
    background-color: #1f2329;
    margin: 2rem 0;

}
/* Tipografia */
h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.875rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

h5 {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

h6 {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    color: #9aa0a6;
}

p {
    margin-bottom: 1rem;
    color: #bdc1c6;
}

a {
    color: #66bb6a;
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: #81c784;
}

/* Layout System - Grid Flexível */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.tc-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.75rem;
}

.tc-col-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 0.75rem;
}

.tc-col-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
    padding: 0 0.75rem;
}

.tc-col-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
    padding: 0 0.75rem;
}

.tc-col-9 {
    flex: 0 0 75%;
    max-width: 75%;
    padding: 0 0.75rem;
}

.tc-col-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    padding: 0 0.75rem;
}

.tc-col-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
    padding: 0 0.75rem;
}

.tc-col-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 0.75rem;
}

.tc-col-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
    padding: 0 0.75rem;
}

.tc-col-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 0.75rem;
}

.tc-col-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 0.75rem;
}

.tc-col-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
    padding: 0 0.75rem;
}

.tc-col-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
    padding: 0 0.75rem;
}

/* Offset Classes */
.tc-offset-1 {
    margin-left: 8.333333%;
}

.tc-offset-2 {
    margin-left: 16.666667%;
}

.tc-offset-3 {
    margin-left: 25%;
}

.tc-offset-4 {
    margin-left: 33.333333%;
}

.tc-offset-5 {
    margin-left: 41.666667%;
}

.tc-offset-6 {
    margin-left: 50%;
}

/* Botões - Tema Dark */
.fag-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.fag-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.fag-btn:hover::before {
    width: 300px;
    height: 300px;
}

.fag-btn:hover {
    background: linear-gradient(135deg, #388e3c 0%, #2e7d32 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
}

.fag-btn:active {
    transform: translateY(0);
}

.fag-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    color: #e8eaed;
    border: 1.5px solid #3c4043;
    border-radius: 12px;
    padding: 0.8125rem 1.6875rem;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.fag-btn-outline:hover {
    border-color: #66bb6a;
    color: #66bb6a;
    transform: translateY(-2px);
}

.fag-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Cards - Tema Dark */
.site-card {
    background: #111318;
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid #1f2329;
}

.site-card:hover {
    transform: translateY(-4px);
    border-color: #2e7d32;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* Panel / Box */
.site-panel {
    background: #111318;
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid #1f2329;
    margin-bottom: 1.5rem;
}


/* Form Elements - Tema Dark */
.form-control {
    width: 100%;
    background: #1a1d24;
    border: 1.5px solid #2a2e35;
    border-radius: 12px;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    font-family: inherit;
    color: #e8eaed;
    transition: all 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: #2e7d32;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.2);
}

.form-control::placeholder {
    color: #5f6368;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    color: #bdc1c6;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239aa0a6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.player-name {
    color: inherit;
}

.player-name--staff {
    position: relative;
    display: inline-block;
    color: var(--player-role-color);
    font-weight: 900;
    text-shadow:
        0 0 6px color-mix(in srgb, var(--player-role-color), transparent 42%),
        0 0 14px color-mix(in srgb, var(--player-role-color), transparent 62%);
}

.player-name--staff::after {
    content: "";
    position: absolute;
    inset: -0.15em -0.25em;
    background-image: url("https://i.imgur.com/d3FDT8r.gif");
    background-size: cover;
    mix-blend-mode: screen;
    opacity: 0.72;
    pointer-events: none;
}

/* Checkbox custom */
input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #2e7d32;
    cursor: pointer;
}

/* Tables - Tema Dark */
.table {
    width: 100%;
    border-collapse: collapse;
}

.table thead th {
    text-align: left;
    padding: 1rem;
    background: #1a1d24;
    color: #bdc1c6;
    font-weight: 600;
    font-size: 0.875rem;
    border-bottom: 1px solid #2a2e35;
}

.table tbody td {
    padding: 1rem;
    border-bottom: 1px solid #1f2329;
}

/* Modal - Tema Dark */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-dialog {
    position: relative;
    width: 90%;
    max-width: 600px;
    margin: 1.75rem auto;
}

.modal-xl {
    max-width: 1140px;
}

.modal-content {
    background: #111318;
    border-radius: 24px;
    border: 1px solid #2a2e35;
    overflow: hidden;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #1f2329;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #1f2329;
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

.close {
    background: none;
    border: none;
    font-size: 1.75rem;
    cursor: pointer;
    color: #9aa0a6;
    transition: color 0.2s;
    line-height: 1;
}

.close:hover {
    color: #e8eaed;
}

/* Utilitários */
.section_100 {
    padding: 2rem 0;
    background: #111318;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-danger {
    color: #ef5350;
}

.text-warning {
    color: #ffb74d;
}

.text-info {
    color: #4fc3f7;
}

.text-success {
    color: #66bb6a;
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }

.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 1rem; }

.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-3 { margin-left: 1rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 2rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-inline-flex { display: inline-flex; }
.flex-column { flex-direction: column; }
.align-items-center { align-items: center; }
.justify-content-between { justify-content: space-between; }
.justify-content-center { justify-content: center; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; }
.gap-4 { gap: 1.5rem; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }
.h-auto { height: auto; }

/* Site Kicker */
.site-kicker {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #66bb6a;
    background: rgba(46, 125, 50, 0.15);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}

.site-section-heading {
    margin-bottom: 2.5rem;
}

.site-empty {
    text-align: center;
    padding: 3rem;
    background: #111318;
    border-radius: 20px;
    color: #9aa0a6;
}

/* Grid Responsivo */
.site-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.site-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Media Queries - Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .tc-col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 0.75rem;
    }

    .tc-col-md-11 {
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
        padding: 0 0.75rem;
    }

    .tc-col-md-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
        padding: 0 0.75rem;
    }

    .tc-col-md-9 {
        flex: 0 0 75%;
        max-width: 75%;
        padding: 0 0.75rem;
    }

    .tc-col-md-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
        padding: 0 0.75rem;
    }

    .tc-col-md-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
        padding: 0 0.75rem;
    }

    .tc-col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 0.75rem;
    }

    .tc-col-md-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
        padding: 0 0.75rem;
    }

    .tc-col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
        padding: 0 0.75rem;
    }

    .tc-col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
        padding: 0 0.75rem;
    }

    .tc-col-md-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
        padding: 0 0.75rem;
    }

    .tc-col-md-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
        padding: 0 0.75rem;
    }

    .tc-offset-md-1 {
        margin-left: 8.333333%;
    }

    .tc-offset-md-2 {
        margin-left: 16.666667%;
    }

    .tc-offset-md-3 {
        margin-left: 25%;
    }

    .tc-offset-md-4 {
        margin-left: 33.333333%;
    }

    .site-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .site-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .section_100 {
        padding: 3rem 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.75rem;
    }
}

/* Media Queries - Mobile */
@media (max-width: 767px) {
    .container {
        padding: 0 1rem;
    }

    .tc-col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 0.75rem;
    }

    .tc-col-sm-11 {
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
        padding: 0 0.75rem;
    }

    .tc-col-sm-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
        padding: 0 0.75rem;
    }

    .tc-col-sm-9 {
        flex: 0 0 75%;
        max-width: 75%;
        padding: 0 0.75rem;
    }

    .tc-col-sm-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
        padding: 0 0.75rem;
    }

    .tc-col-sm-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
        padding: 0 0.75rem;
    }

    .tc-col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 0.75rem;
    }

    .tc-col-sm-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
        padding: 0 0.75rem;
    }

    .tc-col-sm-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
        padding: 0 0.75rem;
    }

    .tc-col-sm-3 {
        flex: 0 0 25%;
        max-width: 25%;
        padding: 0 0.75rem;
    }

    .tc-col-sm-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
        padding: 0 0.75rem;
    }

    .tc-col-sm-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
        padding: 0 0.75rem;
    }

    .site-grid-3 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .site-grid-4 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .section_100 {
        padding: 2rem 0;
    }

    h1 {
        font-size: 1.875rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .site-panel {
        padding: 1.25rem;
    }

    .fag-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .fag-btn-outline {
        padding: 0.6875rem 1.1875rem;
        font-size: 0.875rem;
    }

    .modal-dialog {
        width: 95%;
        margin: 0.5rem auto;
    }

    .modal-header {
        padding: 1rem;
    }

    .modal-body {
        padding: 1rem;
    }

    .table thead th {
        padding: 0.75rem;
    }

    .table tbody td {
        padding: 0.75rem;
    }

    .site-section-heading {
        margin-bottom: 1.5rem;
    }
}

/* Loading Spinner */
.loading {
    background: #1a1d24 !important;
    cursor: wait !important;
}

.loading svg {
    width: 30px;
    height: 30px;
}

/* Scrollbar Custom - Tema Dark */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #111318;
}

::-webkit-scrollbar-thumb {
    background: #2a2e35;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3c4043;
}


/** CSS DO INDEX **/
/* ============================================
   HOME PAGE - TEMA DARK
   TechCraftBrasil - Minecraft Server Store
   ============================================ */


.owl-dots {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.65rem;

    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);

}

.owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.25) !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    transition: all 0.35s ease;
}

.owl-dots .owl-dot span {
    display: none !important;
}

.owl-dots .owl-dot:hover {
    background: rgba(255, 255, 255, 0.55) !important;
    transform: scale(1.15);
}

.owl-dots .owl-dot.active {
    width: 34px;
    background: linear-gradient(135deg, #ffffff, #9f9f9f) !important;
    border-color: rgba(255, 255, 255, 0.85) !important;
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.28);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-slide {
    position: relative;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(10, 12, 18, 0.85) 0%, rgba(10, 12, 18, 0.4) 100%);
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.hero-slide__content {
    max-width: 600px;
}

.hero-slide__content.is-left {
    text-align: left;
    margin-right: auto;
}

.hero-slide__content.is-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-slide__content.is-right {
    text-align: right;
    margin-left: auto;
}

.hero-slide__title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-slide__text {
    font-size: 1.125rem;
    color: #bdc1c6;
    margin-bottom: 1.5rem;
}

.hero-slide__meta {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.hero-slide__meta span {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #9aa0a6;
}

.hero-slide__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-slide__actions.is-left {
    justify-content: flex-start;
}

.hero-slide__actions.is-center {
    justify-content: center;
}

.hero-slide__actions.is-right {
    justify-content: flex-end;
}

.hero-slide__custom {
    margin-bottom: 1.5rem;
}

.hero-slide__custom img {
    max-width: 100%;
    border-radius: 16px;
}

.hero-highlight-grid {
    padding: 5rem 0;
    background: #0d0f15;
    border-bottom: 1px solid #1f2329;
}

.hero-highlight-grid .site-card {
    text-align: center;
}

.hero-highlight-grid .metric {
    font-size: 3rem;
    font-weight: 800;
    color: #66bb6a;
    margin-bottom: 0.5rem;
}

/* Promo Banner */
.promo-banner {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 2.5rem;
}

.promo-banner__copy {
    flex: 1;
}

.promo-banner__copy .lead {
    font-size: 1rem;
    color: #bdc1c6;
}

.promo-banner .site-media {
    flex: 1;
}

.promo-banner .site-media img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.promoted-price {
    font-size: 2rem;
    font-weight: 700;
    color: #66bb6a;
    margin: 1rem 0;
}

/* Promoted Slider */
.promoted-slider {
    margin-top: 1rem;
}

.promoted-slider .owl-stage {
    display: flex;
    align-items: stretch;
}

.promoted-post-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.promoted-post-card .promoted-media {
    margin-bottom: 1rem;
    border-radius: 16px;
    overflow: hidden;
}

.promoted-post-card .promoted-media img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.promoted-post-card:hover .promoted-media img {
    transform: scale(1.05);
}

.promoted-product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.promoted-product-card .promoted-media {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 16px;
    overflow: hidden;
}

.promoted-product-card .promoted-media img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.promoted-product-card .promoted-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #66bb6a;
    margin: 0.75rem 0;
}

.promoted-product-card .fag-btn {
    margin-top: auto;
}

/* News Preview Card */
.news-preview-card {
    display: flex;
    flex-direction: column;
}

.news-preview-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 1rem;
}

.news-preview-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.news-preview-card p {
    font-size: 0.875rem;
    color: #9aa0a6;
    margin-bottom: 1rem;
}

/* Owl Carousel Dots Custom */
.owl-dots {
    text-align: center;
    margin-top: 2rem;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.owl-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0;
    border-radius: 4px;
    background: #3c4043;
    transition: all 0.3s ease;
}

.owl-dot.active {
    width: 32px;
    background: #66bb6a;
}

/* Para tema Light */
body[data-theme="light"] .owl-dot {
    background: #cbd5e1;
}

body[data-theme="light"] .owl-dot.active {
    background: #059669;
}

/* Media Queries - Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-slide {
        min-height: 500px;
    }

    .hero-slide__title {
        font-size: 2.5rem;
    }

    .promo-banner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .promo-banner__copy {
        text-align: center;
    }

    .hero-highlight-grid .site-card {
        padding: 1.25rem;
    }

    .hero-highlight-grid .metric {
        font-size: 2.5rem;
    }
}

/* Media Queries - Mobile */
@media (max-width: 767px) {
    .hero-slide {
        min-height: 450px;
    }

    .hero-slide__title {
        font-size: 1.75rem;
    }

    .hero-slide__text {
        font-size: 0.9375rem;
    }

    .hero-slide__meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-slide__actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-slide__actions .fag-btn,
    .hero-slide__actions .fag-btn-outline {
        width: 100%;
        justify-content: center;
    }

    .hero-highlight-grid {
        padding: 2rem 0;
    }

    .hero-highlight-grid .metric {
        font-size: 2rem;
    }

    .promo-banner {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .promoted-price {
        font-size: 1.5rem;
    }

    .news-preview-card img {
        height: 160px;
    }
}



.money {
    position: absolute;
    bottom: 0;
    right: 96%;
    font-size: 15px;
    font-weight: bold;
    color: #00e676;
    opacity: 0;
    animation: subirDinheiro 3s infinite ease-out;
    text-shadow: 0 0 5px rgba(0, 230, 118, 0.5);
}

.money:nth-child(1) {
    right: 13%;
    animation-delay: 0s;
}

.money:nth-child(2) {
    right: 22%;
    animation-delay: .5s;
}

.money:nth-child(3) {
    right: 5%;
    animation-delay: 1s;
}

.money:nth-child(4) {
    right: 15%;
    animation-delay: 1.5s;
}

.money:nth-child(5) {
    right: 41%;
    animation-delay: 2s;
}

@keyframes subirDinheiro {
    0% {
        transform: translateY(0) scale(0.6) rotate(0deg);
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    100% {
        transform: translateY(-50px) scale(1.2) rotate(18deg);
        opacity: 0;
    }
}