/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #fff;
    background: #2d1b69; /* Roxo escuro da imagem */
    overflow-x: hidden; /* Reativado */
    position: relative;
}

/* Adicionar textura ao fundo */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 119, 198, 0.2) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Variáveis CSS baseadas na imagem */
:root {
    --red-primary: #dc2626; /* Vermelho vibrante */
    --red-dark: #b91c1c; /* Vermelho mais escuro */
    --white: #ffffff;
    --black: #000000;
    --purple-bg: #2d1b69; /* Roxo de fundo */
    --purple-dark: #1a0d3a; /* Roxo mais escuro */
    --text-white: #ffffff;
    --text-light: #e5e7eb;
    --shadow-black: 0 4px 8px rgba(0, 0, 0, 0.5);
    --shadow-red: 0 0 20px rgba(220, 38, 38, 0.3);
}

/* Logo Container - Container para logotipos lado a lado */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.main-logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    margin-bottom: 1rem;
}

/* Logo Image - Estilo da imagem */
.logo-image {
    height: 60px; /* ALTERE AQUI: Tamanho do logotipo no header */
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.7));
}

.logo-image-secondary {
    height: 80px; /* ALTERE AQUI: Tamanho do logotipo secundário no header */
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
    transition: all 0.3s ease;
}

.logo-image-secondary:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.8));
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(45, 27, 105, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--red-primary);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-black);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: var(--purple-bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Keep horizontal padding */
    padding-top: 80px; /* Add padding to account for fixed header */
    text-align: center;
    position: relative;
    z-index: 2;
}

.logo-main {
    margin-bottom: 2rem; /* Reduced margin for mobile */
    animation: fadeInUp 1s ease-out;
}

.main-logo-image {
    height: 180px; /* ALTERE AQUI: Tamanho do logotipo principal (desktop) */
    width: auto;
    max-width: 100%;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.6));
    animation: float 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.main-logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.8));
}

.main-logo-image-secondary {
    height: 200px; /* ALTERE AQUI: Tamanho do logotipo secundário (desktop) */
    width: auto;
    max-width: 100%;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.6));
    animation: float 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.main-logo-image-secondary:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.8));
}

.hero-description {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.action-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    border: 2px solid var(--black);
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    box-shadow: var(--shadow-black);
}

.btn-telegram {
    background: #0088cc;
    color: var(--white);
    text-shadow: 1px 1px 0px var(--black);
}

.btn-telegram:hover {
    background: #006699;
    transform: translateY(-3px);
    box-shadow: 
        var(--shadow-black),
        0 0 20px rgba(0, 136, 204, 0.5);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    text-shadow: 1px 1px 0px var(--black);
}

.btn-whatsapp:hover {
    background: #1ea952;
    transform: translateY(-3px);
    box-shadow: 
        var(--shadow-black),
        0 0 20px rgba(37, 211, 102, 0.5);
}

/* Carrossel de Lojas */
.stores-carousel {
    margin-top: 3rem;
    text-align: center;
}

.carousel-title {
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--white);
    text-shadow: 
        2px 2px 0px var(--black),
        4px 4px 0px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.carousel-container {
    overflow: hidden;
    position: relative;
    max-width: 100%;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    animation: scroll 20s linear infinite;
    width: max-content;
}

.store-item {
    flex-shrink: 0;
    width: 120px;
}

.store-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.store-link:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.store-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 0.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    object-fit: contain;
}

.store-name {
    font-size: 0.8rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pausar animação no hover */
.carousel-track:hover {
    animation-play-state: paused;
}
.bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--red-primary);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
    box-shadow: var(--shadow-red);
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 80px;
    height: 80px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

/* Social Media Section */
.social-section {
    padding: 80px 0;
    background: var(--purple-dark);
    position: relative;
    border-top: 2px solid var(--red-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    text-shadow: 
        2px 2px 0px var(--black),
        4px 4px 0px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.social-card {
    background: var(--red-primary);
    border: 2px solid var(--black);
    border-radius: 0;
    padding: 2rem;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    clip-path: polygon(15px 0%, 100% 0%, calc(100% - 15px) 100%, 0% 100%);
    box-shadow: var(--shadow-black);
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        var(--shadow-black),
        var(--shadow-red);
}

.social-card.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-card.telegram {
    background: #0088cc;
}

.social-card.whatsapp {
    background: #25d366;
}

.social-card.contact {
    background: #6c757d;
}

.social-card.youtube {
    background: #ff0000;
}

.social-card.x {
    background: #000000;
    border: 2px solid #333333;
}

.social-card.x:hover {
    background: #1a1a1a;
    border-color: #555555;
    transform: translateY(-3px);
    box-shadow: 
        var(--shadow-black),
        0 0 20px rgba(0, 0, 0, 0.8);
}

.x-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(1.1);
}

.social-card.tiktok {
    background: #000000;
    border: 2px solid #333333;
}

.social-card.tiktok:hover {
    background: #1a1a1a;
    border-color: #555555;
    transform: translateY(-3px);
    box-shadow: 
        var(--shadow-black),
        0 0 20px rgba(0, 0, 0, 0.8);
}

.social-icon {
    width: 60px;
    height: 60px;
    border: 2px solid var(--black);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.social-content h3 {
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: var(--white);
    text-shadow: 1px 1px 0px var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.social-link {
    font-size: 0.9rem;
    color: var(--text-light);
    font-family: 'Courier New', monospace;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 30px;
    border-top: 3px solid var(--red-primary);
}

.footer-content {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo-image {
    height: 70px; /* ALTERE AQUI: Tamanho do logotipo no footer */
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6));
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.footer-logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.8));
}

.footer-logo-image-secondary {
    height: 100px; /* ALTERE AQUI: Tamanho do logotipo secundário no footer */
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6));
    transition: all 0.3s ease;
}

.footer-logo-image-secondary:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.8));
}

.footer-logo p {
    color: var(--text-light);
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--red-primary);
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

/* ===== TAMANHOS RESPONSIVOS - TABLET (768px) ===== */
@media (max-width: 768px) {
    .main-logo-image {
        max-height: 140px; /* ALTERE AQUI: Tamanho do logotipo principal (tablet) */
        width: auto;
    }
    
    .main-logo-image-secondary {
        max-height: 160px; /* ALTERE AQUI: Tamanho do logotipo secundário (tablet) */
        width: auto;
    }
    
    .main-logo-container {
        gap: 15px;
    }
    
    .logo-image {
        max-height: 50px; /* ALTERE AQUI: Tamanho do logotipo no header (tablet) */
        width: auto;
    }
    
    .logo-image-secondary {
        max-height: 70px; /* ALTERE AQUI: Tamanho do logotipo secundário no header (tablet) */
        width: auto;
    }
    
    .logo-container {
        gap: 10px;
    }
    
    .footer-logo-image {
        max-height: 60px; /* ALTERE AQUI: Tamanho do logotipo no footer (tablet) */
        width: auto;
    }
    
    .footer-logo-image-secondary {
        max-height: 80px; /* ALTERE AQUI: Tamanho do logotipo secundário no footer (tablet) */
        width: auto;
    }
    
    .footer-logo-container {
        gap: 10px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 80%; /* Adjusted width for tablet buttons */
        max-width: 350px;
    }
    
    .carousel-title {
        font-size: 1.3rem;
    }
    
    .store-item {
        width: 110px;
    }
    
    .store-logo {
        width: 55px;
        height: 55px;
    }
    
    .store-name {
        font-size: 0.75rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-description {
        font-size: 1.1rem;
    }
    
}

/* ===== TAMANHOS RESPONSIVOS - MOBILE (480px) ===== */
@media (max-width: 480px) {
    html {
        width: 100vw; /* Force HTML to be exactly viewport width */
        box-sizing: border-box; /* Include padding/border in width */
    }

    body {
        overflow-x: hidden; /* Reativado */
        width: 100vw; /* Force BODY to be exactly viewport width */
        box-sizing: border-box; /* Include padding/border in width */
    }

    .hero {
        padding-top: 80px; /* Reduced padding for smaller screens to make space for header */
        padding-bottom: 40px; /* Further reduce bottom padding */
        width: 100% !important; /* Ensure hero section takes full width */
        box-sizing: border-box; /* Include padding/border in width */
    }

    .hero-container {
        padding: 0 5px; /* Add horizontal padding */
        display: flex; /* Ensure flexbox for vertical centering */
        flex-direction: column; /* Stack items vertically */
        justify-content: center; /* Center items vertically */
        align-items: center; /* Center items horizontally */
        min-height: calc(100vh - 80px); /* Adjust min-height to fill viewport minus header height */
        width: 100% !important; /* Force full width */
        min-width: 0 !important; /* Allow shrinking */
        box-sizing: border-box; /* Include padding/border in width */
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center; /* Explicitly center children horizontally */
        justify-content: center; /* Explicitly center children vertically */
        width: 100% !important; /* Force full width */
        margin: 0; /* Remove auto margin that might conflict */
        padding: 0; /* Keep padding to 0 for now, as hero-container has 5px */
        box-sizing: border-box; /* Ensure padding/border are included in width */
        min-width: 0 !important; /* Allow flex item to shrink */
        flex-grow: 1; /* Allow flex item to grow */
    }

    .main-logo-container {
        display: flex; /* Ensure flexbox for centering */
        flex-direction: column;
        gap: 10px; /* Revert gap */
        width: 100%;
        max-width: 100%; /* Ensure logo container respects parent width */
        align-items: center; /* Explicitly center items within logo container */
        justify-content: center; /* Explicitly center items within logo container */
        min-width: 0; /* Allow flex item to shrink */
        flex-shrink: 1; /* Allow flex item to shrink */
    }

    .main-logo-image {
        max-height: 110px; /* ALTERE AQUI: Tamanho do logotipo principal (mobile) */
        width: auto !important; /* Force width to auto */
        max-width: 100%; /* Ensure image scales down */
        height: auto; /* Maintain aspect ratio */
        display: block; /* Force block-level behavior */
        margin: 0 auto; /* Center as block element */
        object-fit: contain; /* Ensure images fit without distortion */
        box-sizing: border-box; /* Include padding/border in width */
        flex-shrink: 1; /* Allow images to shrink */
        min-width: 0; /* Allow images to shrink */
    }
    
    .main-logo-image-secondary {
        max-height: 120px; /* ALTERE AQUI: Tamanho do logotipo secundário (mobile) */
        width: auto !important; /* Force width to auto */
        max-width: 100%; /* Ensure image scales down */
        height: auto; /* Maintain aspect ratio */
        display: block; /* Force block-level behavior */
        margin: 0 auto; /* Center as block element */
        object-fit: contain; /* Ensure images fit without distortion */
        box-sizing: border-box; /* Include padding/border in width */
        flex-shrink: 1; /* Allow images to shrink */
        min-width: 0; /* Allow images to shrink */
    }
    
    .logo-main {
        margin-bottom: 1rem; /* Further reduce margin for mobile */
        width: 100%; /* Ensure it takes full width */
        box-sizing: border-box; /* Include padding/border in width */
    }

    .hero-description {
        font-size: 0.8rem; /* Revert font size */
        text-align: center;
        width: 100%; /* Ensure description takes full width */
        max-width: calc(100% - 20px); /* Adjust buffer */
        margin: 0 auto 1.5rem auto; /* Center text and add bottom margin */
        box-sizing: border-box; /* Ensure padding/border are included in width */
        word-break: break-word; /* Force word breaking */
        hyphens: auto; /* Allow hyphenation */
        min-width: 0; /* Allow flex item to shrink */
        flex-shrink: 1; /* Allow flex item to shrink */
        white-space: normal; /* Ensure text wraps */
    }
    
    .action-buttons {
        display: flex; /* Ensure flexbox for centering */
        flex-direction: column;
        align-items: center; /* Explicitly center buttons horizontally */
        justify-content: center; /* Explicitly center buttons vertically */
        gap: 1rem; /* Revert gap */
        width: 100%; /* Ensure buttons container takes full width */
        box-sizing: border-box; /* Include padding/border in width */
        min-width: 0; /* Allow flex item to shrink */
        flex-shrink: 1; /* Allow flex item to shrink */
    }
    
    .btn {
        box-sizing: border-box; /* Ensure padding/border are included in width */
        padding: 0.8rem 1rem; /* Revert padding */
        font-size: 0.8rem; /* Revert font size */
        width: calc(100% - 20px); /* Make buttons take up full width with buffer */
        max-width: 280px; /* Constrain max-width */
        display: block; /* Force block-level behavior */
        margin: 0 auto; /* Center buttons horizontally */
        flex-shrink: 1; /* Allow button to shrink */
        min-width: 0; /* Allow button to shrink */
        white-space: normal; /* Ensure text wraps */
    }
    
    .social-section .section-title {
        font-size: 1.8rem;
    }
    
    .social-section .section-description {
        font-size: 1rem;
    }
    
    .social-grid {
        grid-template-columns: 1fr; /* Single column layout for social cards */
    }
    
    .social-card {
        padding: 1.2rem; /* Reduced padding */
        text-align: center; /* Center text within social cards */
    }
    
    .social-icon {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1rem; /* Adjusted margin */
    }
    
    .social-content h3 {
        font-size: 1.2rem;
    }
    
    .social-content p {
        font-size: 0.9rem;
    }
    
    .social-link {
        font-size: 0.8rem;
    }

    /* Hero Section Adjustments */
    .hero {
        padding-top: 80px; /* Reduced padding for smaller screens to make space for header */
        padding-bottom: 40px; /* Further reduce bottom padding */
        width: 100%; /* Ensure hero section takes full width */
        box-sizing: border-box; /* Include padding/border in width */
    }

    .hero-container {
        padding: 0; /* Remove all padding from container in mobile */
        display: flex; /* Ensure flexbox for vertical centering */
        flex-direction: column; /* Stack items vertically */
        justify-content: center; /* Center items vertically */
        align-items: center; /* Center items horizontally */
        min-height: calc(100vh - 80px); /* Adjust min-height to fill viewport minus header height */
    }
    
    .logo-main {
        margin-bottom: 1rem; /* Further reduce margin for mobile */
    }
    
    .carousel-title {
        font-size: 1.1rem; /* Adjust font size for carousel title on mobile */
    }
}

/* Efeitos de partículas */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--red-primary);
    border-radius: 50%;
    animation: particle-float 8s linear infinite;
    box-shadow: 0 0 6px var(--red-primary);
}

@keyframes particle-float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--purple-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--red-primary);
    border: 2px solid var(--black);
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--red-dark);
}

/* Seleção de texto personalizada */
::selection {
    background: var(--red-primary);
    color: var(--white);
}

/* Focus states para acessibilidade */
.btn:focus,
.social-card:focus {
    outline: 3px solid var(--white);
    outline-offset: 2px;
}

/* Utilitários */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
