@import url(https://fonts.googleapis.com/css?family=Righteous);
@import url(https://fonts.googleapis.com/css?family=Black+Ops+One);

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

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

:root {
    --bg-color-01: rgb(215, 215, 215);
    --bg-color-02: rgb(32, 32, 32);
    --socials-bg: url('./img/nyh-wallpaper.png');
    --about-bg: url('./img/nyh-wall2.png');
}

body {
    margin: 0;
    position: relative;
    background-color: rgb(215, 215, 215);
}

ul,
li,
a {
    list-style: none;
    text-decoration: none;
    font-style: normal;
}

/* Homepage Styles */
body.index-page {
    min-height: 100vh;
    background: url('./img/nyh-wallpaper.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow-x: hidden;
}

body.index-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: -1;
}

/* Main Content Container */
.info-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    color: white;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
}

.info-container h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #6aa0bc;
    text-shadow: 0 0 10px rgba(106, 160, 188, 0.5);
}

.info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
}

.imagem-perfil {
    flex: 0 1 300px;
    max-width: 300px;
    width: 300px;
    margin: 0 auto;
    animation: float 6s ease-in-out infinite;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.imagem-perfil img {
    width: auto;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.conteudo {
    flex: 1;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    text-align: left;
    background: rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    box-sizing: border-box;
}

.texto p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-container {
    margin-top: 2rem;
    text-align: center;
}

.btn {
    background: transparent;
    color: #6aa0bc;
    border: 2px solid #6aa0bc;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(106, 160, 188, 0.4);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #6aa0bc;
    transition: all 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.neon-pulse {
    animation: neonPulse 2s infinite alternate;
}

@keyframes neonPulse {
    from {
        box-shadow: 0 0 5px #6aa0bc,
                   0 0 10px #6aa0bc,
                   0 0 20px #6aa0bc;
    }
    to {
        box-shadow: 0 0 10px #6aa0bc,
                   0 0 20px #6aa0bc,
                   0 0 30px #6aa0bc,
                   0 0 40px #6aa0bc;
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .imagem-perfil {
        flex: 0 1 300px;
        max-width: 300px;
    }
}

@media (max-width: 992px) {
    .info {
        flex-direction: column;
        text-align: center;
    }
    
    .conteudo {
        text-align: center;
        max-width: 100%;
    }
    
    .imagem-perfil {
        width: 300px;
        max-width: 80%;
        height: auto;
        margin: 0 auto;
        box-shadow: none;
    }
}

@media (max-width: 768px) {
    .info-container h1 {
        font-size: 2.5rem;
    }
    
    .conteudo {
        padding: 1.5rem;
    }
    
    .texto p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
    }
    
    .imagem-perfil {
        width: 250px;
        max-width: 70%;
        height: auto;
        box-shadow: none;
    }

    .info-container{
        margin-bottom: 50px;
    }

    .redes_sociais{
        margin-bottom: 50px;
    }
}

@media (max-width: 576px) {
    .imagem-perfil {
        width: 200px;
        max-width: 80%;
    }

    .video iframe{
        max-width: 300px;
        max-height: 200px;
    }

    .shorts iframe{
        max-width: 200px;
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .info {
        flex-direction: column;
        padding: 0 10px;
    }
    
    .imagem-perfil {
        width: 250px;
        height: 250px;
        margin-bottom: 1.5rem;
    }
    
    .conteudo {
        padding: 1.2rem;
    }
    
    .texto p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .info-container h1 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
        padding: 0 10px;
    }
    
    .info-container {
        padding: 1rem 0.5rem;
    }
    
    .imagem-perfil {
        width: 220px;
        height: 220px;
    }
    
    .imagem-perfil {
        width: 180px;
        max-width: 85%;
        padding: 0 1rem;
        box-shadow: none;
    }
    
    .conteudo {
        padding: 1.2rem;
    }
    
    .btn {
        width: 100%;
        padding: 0.8rem;
    }
}

@media (max-width: 380px) {
    .imagem-perfil {
        width: 200px;
        max-width: 100%;
        padding: 0 1rem;
    }
}

body.socials-page {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: var(--bg-color-02);
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
}

body.socials-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--about-bg);
    background-size: cover;
    background-position: center;
    z-index: -1;
    animation: zoomInOut 10s infinite alternate ease-in-out;
    opacity: 0.3;
}

body.about-page {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: var(--bg-color-02);
    color: white;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.about-content {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    padding: 2rem;
    margin-top: 2rem;
}

.about-nyh {
    margin-bottom: 3rem;
}

.about-nyh h1 {
    color: #6aa0bc;
    text-align: center;
    margin-bottom: 1.5rem;
}

.models-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.model-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    flex: 1 1 300px;
    max-width: 400px;
    transition: transform 0.3s ease;
}

.model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.model-card h2 {
    color: #6aa0bc;
    text-align: center;
    margin-top: 0;
    margin-bottom: 1rem;
}

.model-card p {
    margin-top: 1rem;
    color: #e0e0e0;
}

/* Carousel Styles */
.carousel {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.carousel img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel img.active {
    opacity: 1;
}

.carousel-nav {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
    z-index: 10;
}

.carousel-nav button {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.carousel-nav button:hover {
    background: rgba(106, 160, 188, 0.8);
}

/* Esconde navegação em carrosséis com apenas uma imagem */
.carousel:has(img:only-child) .carousel-nav {
    display: none;
}

/* Estilo base para elementos com animação de scroll */
.scroll-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

/* Classe ativada quando o elemento está visível */
.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Delays para animações em sequência */
.scroll-animate.delay-1 {
    transition-delay: 0s;
}

.scroll-animate.delay-2 {
    transition-delay: 0s;
}

.scroll-animate.delay-3 {
    transition-delay: 0s;
}

/* Estilo para títulos da seção de lore */
.about-nyh h1 {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

/* Efeito de linha animada abaixo dos títulos */
.about-nyh h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #6aa0bc, transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s ease-out;
    transition-delay: 0.3s;
}

/* Estado ativo da linha animada */
.about-nyh.animate h1::after {
    transform: scaleX(1);
}

/* Efeito de brilho nos cards ao rolar */
.model-card.animate {
    box-shadow: 0 10px 30px rgba(106, 160, 188, 0.2);
    transition: box-shadow 0.5s ease-out, transform 0.5s ease-out;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.3);
    }
}

.nav-8 {
    background: #6aa0bc;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.nav-8 nav {
    background: #6aa0bc;
}

.nav-8 .linktext {
    font-size: 1.3em;
    text-align: center;
    position: relative;
    z-index: 2;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Righteous', Arial, sans-serif;
    text-transform: uppercase;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    transition-delay: 0s;
    -webkit-transition-delay: 0s;
}

.nav-8 .linktext:before,
.nav-8 .linktext:after {
    opacity: 0;
    position: absolute;
    top: 7px;
    transform: translateY(36px);
    -webkit-transform: translateY(36px);
    left: 0px;
    width: 100%;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    font-size: 0.5em;
}

.nav-8 .linktext:before {
    content: '';
    height: 2px;
    background: #010101;
    transition-delay: 0s;
    -webkit-transition-delay: 0s;
}

.nav-8 .linktext:after {
    content: attr(data-text);
    color: #ffffff;
    transition-delay: 0s;
    -webkit-transition-delay: 0s;
}

.nav-8 .item {
    position: relative;
    display: inline-block;
    height: 35px;
    padding-top: 15px;
    margin-left: 25px;
    margin-right: 25px;
    margin-bottom: 25px;
    background: transparent;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    z-index: 2;
    color: #007BFF;
    text-decoration: none;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
}

.nav-8 .item:hover .linktext {
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
}

.nav-8 .item:hover .linktext:before {
    transition-delay: 0s;
    -webkit-transition-delay: 0s;
}

.nav-8 .item:hover .linktext:after {
    transition-delay: 0.15s;
    -webkit-transition-delay: 0.15s;
}

.nav-8 .item:hover .linktext:before,
.nav-8 .item:hover .linktext:after {
    transform: translateY(16px);
    -webkit-transform: translateY(16px);
    opacity: 1;
}

.info-container {
    text-align: center;
}

.info-container h1 {
    font-size: 40px;
    color: white;
    font-weight: bold;
    text-decoration: underline;
}

.info {
    display: flex;
    flex-direction: row;
    padding-top: 0;
    padding-left: 200px;
    padding-right: 200px;
    justify-content: center;
    align-items: center;
}

.imagem-perfil img {
    width: auto;
    height: 500px;
}

.conteudo,
p {
    margin: 20px;
    font-size: 20px;
    text-align: justify;
    color: white;
}

.btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
}

.btn {
    position: relative;
    padding: 1.5rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    min-width: 200px;
    z-index: 1;
    border-radius: 20px;
}

.btn:hover {
    animation: pulse 1.5s infinite;
}

.neon-pulse {
    background: #000;
    border: 2px solid #0ff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    overflow: visible;
}

.neon-pulse::before,
.neon-pulse::after {
    content: "";
    position: absolute;
    inset: -4px;
    border: 2px solid #0ff;
    border-radius: inherit;
    animation: pulseOut 2s ease-out infinite;
    opacity: 0;
}

.neon-pulse::after {
    animation-delay: 1s;
}

@keyframes pulseOut {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.titulo1 {
    padding-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    text-decoration: underline;
    background-color: var(--bg-color-02);
    color: var(--bg-color-01);
}

.titulo2 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    text-decoration: underline;
    color: var(--bg-color-02);
}

.app_videos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.shorts_background {
    background-color: var(--bg-color-02);
    padding-right: 200px;
    padding-left: 200px;
}

.shorts {
    flex-direction: row;
    margin: 30px;
}

.shorts iframe {
    width: 368px;
    height: 810px;
    border-radius: 10px;
}

.video {
    flex-direction: row;
    margin: 30px;
}

.video iframe {
    width: 780px;
    height: 432px;
    border-radius: 10px;
}

.shorts::before,
/* Hamburger Menu Styles */
.nav-header {
    position: relative;
    z-index: 1000;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    padding: 15px;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1001;
}

.hamburger-icon {
    width: 30px;
    height: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.hamburger-icon span:nth-child(1) {
    top: 0;
}

.hamburger-icon span:nth-child(2),
.hamburger-icon span:nth-child(3) {
    top: 10px;
}

.hamburger-icon span:nth-child(4) {
    top: 20px;
}

/* When menu is open */
.menu-open .hamburger-icon span:nth-child(1) {
    top: 10px;
    width: 0%;
    left: 50%;
}

.menu-open .hamburger-icon span:nth-child(2) {
    transform: rotate(45deg);
}

.menu-open .hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg);
}

.menu-open .hamburger-icon span:nth-child(4) {
    top: 10px;
    width: 0%;
    left: 50%;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }
    
    .nav-8 {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #6aa0bc;
        transition: right 0.3s ease-in-out;
        padding-top: 60px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }
    
    .menu-open .nav-8 {
        right: 0;
    }
    
    .nav-menu {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
    
    .nav-menu .item {
        margin: 10px 0 !important;
        width: 100%;
        text-align: left;
    }
    
    .nav-menu .linktext {
        font-size: 1.1em !important;
    }
}

/* Ensure content doesn't shift when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Adjust content when menu is open on mobile */
@media screen and (max-width: 768px) {
    body.menu-open::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
}

.video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #0ff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.shorts:hover,
.video:hover {
    transform: translateY(-10px);
    border-color: #0ff;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
}

.shorts:hover {
    box-shadow: 0 10px 20px var(--bg-color-01);
}

.video:hover {
    box-shadow: 0 10px 20px var(--bg-color-02);
}

.shorts:hover::before,
.video:hover::before {
    transform: scaleX(1);

}

.redes_sociais {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 2rem;
    margin-top: 60px;
}

.social-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    width: 100%;
    padding: 1rem;
}

.social-item {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 2rem 1rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #0ff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.social-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.2);
    border-color: #0ff;
    background: rgba(0, 0, 0, 0.8);
}

.social-item:hover::before {
    transform: scaleX(1);
}

.social-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0ff;
}

.social-item div {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}



@media (max-width: 768px) {
    .social-content {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .social-item {
        padding: 1.5rem 1rem;
    }
}

footer {
    background-color: var(--bg-color-02);
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-home {
    position: fixed;
}