
:root {
    --bg-dark: #0a0a0f;
    --bg-card: rgba(15, 15, 22, 0.85);
    --red-primary: #e63946;
    --red-glow: #ff2d55;
    --red-dark: #b91c3c;
    --red-intense: #ff1744;
    --text-primary: #f1f1f1;
    --text-muted: #a0a0a8;
    --border-subtle: rgba(230, 57, 70, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    cursor: none;
}


.container {
    position: relative;
    z-index: 2;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 16px;
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0;
}

.container-inner {
    display: flex;
    flex-direction: row;
    max-width: 1920px;
    width: 100%;
    flex: 1;
    min-height: 100%;
}

.precos-lista {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
    min-height: 0;
    margin: 0;
    padding: 0;
}

.preco-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: rgba(18, 18, 26, 0.8);
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-radius: 12px;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.preco-item:hover {
    border-color: rgba(230, 57, 70, 0.5);
    background: rgba(230, 57, 70, 0.08);
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.15);
}

.preco-item.preco-destaque {
    border-color: var(--red-primary);
    background: rgba(230, 57, 70, 0.12);
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.2);
}

.preco-item.preco-destaque:hover {
    background: rgba(230, 57, 70, 0.18);
    box-shadow: 0 0 28px rgba(230, 57, 70, 0.3);
}

.preco-periodo {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.15rem;
}

.preco-valor {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: var(--red-glow);
    font-size: 1.2rem;
}

.main-content {
    flex: 1;
    min-width: 0;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.bg-animation {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: var(--bg-dark);
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 15s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--red-primary) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--red-dark) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--red-glow) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(-30px, -20px) scale(1.02); }
}

.cursor-ball {
    position: fixed;
    width: 8px;
    height: 8px;
    opacity: 0;
    border-radius: 50%;
    background: rgba(80, 85, 95, 0.85);
    border: 1px solid rgba(120, 125, 140, 0.5);
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: 
        left 0.06s ease-out, 
        top 0.06s ease-out, 
        opacity 0.3s ease,
        width 0.2s ease,
        height 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.cursor-ball.cursor-hover {
    width: 16px;
    height: 16px;
    background: rgba(200, 205, 215, 0.9);
    border-color: rgba(230, 235, 245, 0.6);
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(230, 57, 70, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(230, 57, 70, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-pulse 4s ease-in-out infinite;
}

@keyframes grid-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid var(--border-subtle);
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(230, 57, 70, 0.6));
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-left: 12px;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.logo:hover .logo-text {
    color: var(--red-glow);
}

.logo-img {
    height: 48px;
    width: auto;
    display: block;
    position: relative;
    z-index: 0;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.25rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red-primary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--red-glow);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-btn {
    flex-shrink: 0;
    text-decoration: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 34px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border-radius: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--red-primary) 50%, var(--red-glow) 100%);
    color: white;
    box-shadow: 
        0 0 20px rgba(230, 57, 70, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 0 30px rgba(230, 57, 70, 0.6),
        0 0 60px rgba(255, 45, 85, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: rgba(230, 57, 70, 0.15);
    color: var(--red-glow);
    border: 2px solid var(--red-primary);
}

.btn-secondary:hover {
    background: rgba(230, 57, 70, 0.25);
    box-shadow: 0 0 25px rgba(230, 57, 70, 0.5);
    transform: translateY(-2px);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.6s ease;
}

.btn:hover .btn-shine {
    left: 100%;
}

.btn-text {
    position: relative;
    z-index: 1;
}

.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 0;
}

.hero-content {
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(230, 57, 70, 0.2);
    border: 1px solid var(--red-primary);
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--red-glow);
    margin-bottom: 24px;
    animation: border-pulse 2s ease-in-out infinite;
}

@keyframes border-pulse {
    0%, 100% { box-shadow: 0 0 10px rgba(230, 57, 70, 0.3); }
    50% { box-shadow: 0 0 25px rgba(230, 57, 70, 0.5); }
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 8vw, 4rem);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: 6px;
    background: linear-gradient(135deg, #fff 0%, var(--red-primary) 40%, var(--red-glow) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: title-glow 4s ease-in-out infinite;
}

@keyframes title-glow {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.hero-gif {
    margin-bottom: 32px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(230, 57, 70, 0.2);
}

.hero-gif img {
    width: 100%;
    height: auto;
    display: block;
}

.hero .btn {
    margin-top: 20px;
}

.section {
    padding: 80px 0;
}

.section.produtos {
    display: flex;
    flex-direction: column;
    padding: 24px 0 20px;
    min-height: 0;
    flex: 1;
    justify-content: flex-start;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-primary);
    flex-shrink: 0;
}

.produtos-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 44px;
    align-items: stretch;
    flex: 1;
    min-height: 0;
    align-self: stretch;
}

.produto-col-card {
    position: relative;
    min-width: 0;
    display: flex;
}

.produto-col-precos {
    min-width: 0;
    display: flex;
}

.produto-col-precos .funcoes-ff {
    flex: 1;
    width: 100%;
}

.produto-col-card .card {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.produto-col-funcoes {
    min-width: 0;
    display: flex;
}

.produto-col-funcoes .funcoes-ff {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
}

.card {
    position: relative;
    background: linear-gradient(180deg, rgba(20, 20, 28, 0.95) 0%, rgba(12, 12, 18, 0.98) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 40px 48px 48px;
    text-align: center;
    overflow: hidden;
    transition: all 0.4s ease;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    box-shadow: 
        0 0 0 1px rgba(230, 57, 70, 0.08),
        0 24px 48px rgba(0, 0, 0, 0.4);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--red-primary), var(--red-glow), transparent);
    border-radius: 24px 24px 0 0;
    opacity: 0.8;
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--red-primary);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(230, 57, 70, 0.2);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(230, 57, 70, 0.15) 0%,
        transparent 50%
    );
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover .card-glow {
    opacity: 1;
}

.card-logo {
    width: 110px;
    height: 110px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Logo no topo dos painéis Preços e Recursos (mesmo estilo do card Free Fire) */
.panel-logo {
    width: 110px;
    height: 110px;
    min-height: 110px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: visible;
}

.panel-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.65rem;
    margin-bottom: 28px;
    color: var(--text-primary);
}

.card-showcase {
    margin-bottom: 32px;
    margin-top: 28px;
    width: 100%;
    min-height: 300px;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-showcase img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    object-fit: contain;
}

.card .btn {
    width: 100%;
    padding: 18px 36px;
    font-size: 1.05rem;
}

.btn-funcoes {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.25) 0%, rgba(230, 57, 70, 0.15) 100%);
    color: var(--red-glow);
    border: 1px solid var(--red-primary);
    margin-bottom: 14px;
    margin-top: auto;
}

.btn-funcoes:hover {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.35) 0%, rgba(230, 57, 70, 0.25) 100%);
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.3);
}

.funcoes-ff {
    margin-top: 0;
    padding: 40px 48px 48px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(20, 20, 28, 0.95) 0%, rgba(12, 12, 18, 0.98) 100%);
    border: 1px solid var(--border-subtle);
    box-shadow: 
        0 0 0 1px rgba(230, 57, 70, 0.08),
        0 24px 48px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.funcoes-ff::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--red-primary), var(--red-glow), transparent);
    opacity: 0.8;
}

.funcoes-ff-header {
    text-align: center;
    margin-bottom: 28px;
    flex-shrink: 0;
}

.funcoes-ff-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(230, 57, 70, 0.2);
    border: 1px solid rgba(230, 57, 70, 0.5);
    border-radius: 24px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--red-glow);
    letter-spacing: 1px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.funcoes-ff-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.funcoes-ff-desc {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 1.15rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.funcoes-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 100%;
    margin: 0;
    flex: 1;
    min-height: 0;
    overflow-y: visible;
    padding-right: 0;
    margin-right: 0;
}

/* Ao abrir uma função: outras somem, só a aberta fica com scroll interno; painéis ao lado não crescem */
.funcoes-ff.has-open .funcoes-categoria:not([open]) {
    display: none;
}

.funcoes-ff.has-open .funcoes-categoria[open] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.funcoes-ff.has-open .funcoes-categoria[open] .funcoes-content-wrap {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 4px;
    margin-right: -4px;
}

.funcoes-ff.has-open .funcoes-categoria[open] .funcoes-content-wrap::-webkit-scrollbar {
    width: 10px;
}

.funcoes-ff.has-open .funcoes-categoria[open] .funcoes-content-wrap::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 5px;
    margin: 4px 0;
}

.funcoes-ff.has-open .funcoes-categoria[open] .funcoes-content-wrap::-webkit-scrollbar-thumb {
    background: rgba(230, 57, 70, 0.7);
    border-radius: 5px;
    border: 2px solid rgba(20, 20, 28, 0.9);
}

.funcoes-ff.has-open .funcoes-categoria[open] .funcoes-content-wrap::-webkit-scrollbar-thumb:hover {
    background: var(--red-primary);
}

/* Categoria aberta sem has-open (estado inicial): scroll limitado */
.funcoes-categoria[open] .funcoes-content-wrap {
    overflow-y: auto;
    max-height: 560px;
}

.funcoes-categoria[open] .funcoes-content-wrap::-webkit-scrollbar {
    width: 8px;
}

.funcoes-categoria[open] .funcoes-content-wrap::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 4px;
}

.funcoes-categoria[open] .funcoes-content-wrap::-webkit-scrollbar-thumb {
    background: rgba(230, 57, 70, 0.7);
    border-radius: 4px;
}

.funcoes-categoria[open] .funcoes-content-wrap::-webkit-scrollbar-thumb:hover {
    background: var(--red-primary);
}

.funcoes-categoria {
    background: rgba(18, 18, 26, 0.8);
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.funcoes-categoria:not([open]) .funcoes-categoria-titulo {
    border-radius: 16px;
}

.funcoes-categoria[open] .funcoes-categoria-titulo {
    border-radius: 16px 16px 0 0;
}

.funcoes-categoria:hover {
    border-color: rgba(230, 57, 70, 0.45);
    box-shadow: 0 0 28px rgba(230, 57, 70, 0.12);
}

.funcoes-categoria-titulo {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--text-primary);
    padding: 26px 44px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    transition: background 0.25s ease, color 0.2s ease;
}

.funcoes-categoria-titulo::-webkit-details-marker {
    display: none;
}

.funcoes-categoria-titulo::before {
    content: '▸';
    margin-right: 14px;
    font-size: 1rem;
    transition: transform 0.35s ease;
    color: var(--red-primary);
}

.funcoes-content-wrap {
    overflow: hidden;
    transition: height 0.35s ease-out;
}

.funcoes-categoria:not([open]) .funcoes-content-wrap {
    height: 0;
}

.funcoes-content {
    opacity: 0;
    transition: opacity 0.2s ease-out;
}

.funcoes-categoria[open] .funcoes-content {
    opacity: 1;
    transition: opacity 0.25s ease-out 0.08s;
}

.funcoes-categoria[open] .funcoes-categoria-titulo::before {
    transform: rotate(90deg);
}

.funcoes-categoria-titulo:hover {
    background: rgba(230, 57, 70, 0.1);
    color: var(--red-glow);
}

.funcoes-categoria .funcoes-lista {
    padding: 14px 0 0;
}

.funcoes-categoria .funcoes-lista:first-of-type {
    padding-top: 24px;
}

.funcoes-categoria .funcoes-lista:last-of-type {
    padding-bottom: 20px;
}

.funcoes-categoria > .funcoes-content-wrap .funcoes-subtitulo,
.funcoes-categoria > .funcoes-content-wrap .funcoes-lista {
    padding-left: 28px;
    padding-right: 28px;
}

.funcoes-subtitulo {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--red-primary);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin: 24px 0 14px;
    padding-top: 16px;
    border-top: 1px solid rgba(230, 57, 70, 0.2);
}

.funcoes-subtitulo:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.funcoes-lista {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.funcoes-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 18px;
    border-radius: 12px;
    transition: background 0.2s ease;
    border-left: 2px solid transparent;
}

.funcoes-item:hover {
    background: rgba(230, 57, 70, 0.08);
    border-left-color: rgba(230, 57, 70, 0.5);
}

.funcoes-nome {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.05rem;
}

.funcoes-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.footer {
    padding: 28px 0;
    margin-top: 24px;
    border-top: 1px solid var(--border-subtle);
    flex-shrink: 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    width: 100%;
}

.footer-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-shrink: 0;
    width: 100%;
}

.social-link {
    color: var(--red-glow);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--red-glow);
    transition: width 0.3s ease;
}

.social-link:hover::after {
    width: 100%;
}

.social-link:hover {
    text-shadow: 0 0 10px var(--red-glow);
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .container-inner {
        flex-direction: column;
    }

    .header {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav {
        gap: 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }

    .funcoes-ff {
        padding: 32px 20px 40px;
        height: auto;
        max-height: none;
    }

    .funcoes-grid {
        overflow-y: visible;
    }

    .funcoes-ff-title {
        font-size: 1.45rem;
    }

    .produtos-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: start;
    }

    .produto-col-precos .funcoes-ff {
        height: auto;
        min-height: auto;
    }

    .produto-col-card {
        position: static;
    }

    .produto-col-card .card,
    .produto-col-funcoes .funcoes-ff {
        flex: none;
        height: auto;
        min-height: auto;
    }

    .card-showcase {
        min-height: 0;
        margin-top: 20px;
        margin-bottom: 24px;
    }

    .card-showcase img {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
    }
}
