/* Fontes personalizadas */
@font-face {
    font-family: 'sd-asian';
    src: url('../fonts/sd-asian.ttf') format('truetype');
    font-display: swap;
}

/* Estilos base */
:root {
    --primary-color: #EAAC15;
    --primary-dark: #d69a13;
    --bg-dark: rgba(0, 0, 0, 0.7);
    --text-light: #ffffff;
}

body, html {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    font-family: 'sd-asian', sans-serif;
}

/* Cursor personalizado */
body, *:hover {
    cursor: url(../images/cursor.png), auto;
}

/* Video de fundo */
video {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -2;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: var(--bg-dark);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand .logo {
    width: 200px;
    transition: all 0.3s ease;
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28234, 172, 21, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.page-content .inner-content .heading {
    font-size: 10rem;
    font-family: 'sd-asian', sans-serif;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #EAAC15;
    line-height: 1;
    margin-bottom: 20px;
    /* Adicione essas propriedades para melhorar em telas pequenas */
    word-break: break-word;
    overflow-wrap: break-word;
}
/* Conteúdo principal */
.page-content {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 0;
}

.heading {
    font-family: 'sd-asian', sans-serif;
    font-size: 10rem;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #EAAC15;
    margin-bottom: 1.5rem;
    text-shadow: none; /* Removi o text-shadow que havia adicionado antes */
    line-height: 1;
}

.paragrafo {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-warning {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-warning {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(234, 172, 21, 0.3);
}

.btn-outline-warning:hover {
    background-color: var(--primary-color);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(234, 172, 21, 0.3);
}

/* Ícones sociais */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(234, 174, 21, 0.7);
    color: #000;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(234, 172, 21, 0.4);
}

/* Controle de volume */
.volume-control {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--bg-dark);
    padding: 0.75rem 1rem;
    border-radius: 50px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.volume-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.volume-btn:hover {
    transform: scale(1.1);
}

.volume-slider {
    width: 100px;
    height: 6px;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    outline: none;
    transition: all 0.3s ease;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
}

.volume-slider:hover {
    height: 8px;
}

/* Seleção de texto */
::selection {  /* Amarelo do Chainsaw Man */
    color: #EAAC15;               /* Texto preto quando selecionado */
    text-shadow: none;         /* Remove sombra se houver */
}
/* Para navegadores Firefox */
::-moz-selection {
    color: #EAAC15;
    text-shadow: none;
}

/* Mantendo o estilo específico para .paragrafo e .heading que você tinha */
.paragrafo::selection, 
.heading::selection {
    color: #EAAC15;
}

.paragrafo::-moz-selection,
.heading::-moz-selection {
    background-color: #EAAC15;
    color: #000;
}

/* Animações */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* Media Queries */
@media (max-width: 992px) {
    .heading {
        font-size: 5rem;
    }
}

@media (max-width: 768px) {
    .heading {
        font-size: 4rem;
    }
    
    .paragrafo {
        font-size: 1.1rem;
    }
    
    .buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-warning, .btn-outline-warning {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .heading {
        font-size: 3rem;
    }
    
    .navbar-brand .logo {
        width: 150px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .volume-control {
        padding: 0.5rem 0.75rem;
    }
    
    .volume-slider {
        width: 80px;
    }
}
/* Ajustes progressivos para telas menores */
@media (max-width: 1200px) {
    .page-content .inner-content .heading {
        font-size: 8rem;
    }
}

@media (max-width: 992px) {
    .page-content .inner-content .heading {
        font-size: 6rem;
    }
}

@media (max-width: 768px) {
    .page-content .inner-content .heading {
        font-size: 4.5rem;
        -webkit-text-stroke-width: 0.8px; /* Borda um pouco mais fina */
    }
}

@media (max-width: 576px) {
    .page-content .inner-content .heading {
        font-size: 3.5rem;
        margin-bottom: 15px;
    }
}

@media (max-width: 400px) {
    .page-content .inner-content .heading {
        font-size: 3.4rem;
        -webkit-text-stroke-width: 0.6px; /* Borda mais fina ainda */
    }
}

@media (max-width: 320px) {
    .page-content .inner-content .heading {
        font-size: 2.2rem;
    }
}