:root {
    --primary-dark: #001021;
    --secondary-dark: #071E2D;
    --tertiary-dark: #0D2E39;
    --accent: #EBFF13;
    --text-primary: #FFFFFF;
    --text-secondary: #D1D5DB;
    --text-muted: #9CA3AF;
    --card-bg: rgba(17, 17, 17, 0.4);
    --card-border: rgba(255, 255, 255, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(to bottom, var(--tertiary-dark), var(--secondary-dark), var(--primary-dark));
    color: var(--text-primary);
    font-family: 'Source Sans 3', sans-serif;
    line-height: 1.6;
}

/* Estilos para o Pré-carregador */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--tertiary-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    width: 200px;
    height: auto;
    animation: fade-in-out 2s infinite;
    filter: brightness(1.2);
}

@keyframes fade-in-out {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* Container principal */
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 60px 20px 0 20px;
}

/* Títulos das seções */
.container .heading {
    width: 50%;
    padding-bottom: 60px;
}

.container .heading h3 {
    font-size: 3.5rem;
    font-weight: 700;
    padding-bottom: 15px;
    color: var(--accent);
    position: relative;
    display: inline-block;
    font-family: 'Playfair Display', serif;
}

.container .heading h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background-color: var(--accent);
    border-radius: 2px;
}

.container .heading h3 span {
    font-weight: 300;
    color: var(--accent);
}

/* Estilo do Botão de Contacto */
.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    padding: 14px 30px;
    background-color: var(--accent);
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--accent);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.contact-button:hover {
    background-color: transparent;
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(235, 255, 19, 0.2);
}

.contact-button:active {
    transform: translateY(0);
}

/* Para mobile - melhor experiência em dispositivos touch */
@media (max-width: 768px) {
    .contact-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Galeria de imagens */
.container .box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.container .box .dream {
    display: flex;
    flex-direction: column;
    width: 32.5%;
    gap: 15px;
}

.container .box .dream img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.container .box .dream img:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Rodapé */
footer {
    background-color: var(--accent);
    color: var(--primary-dark);
    text-align: center;
    padding: 20px 0;
    margin-top: 60px;
    font-weight: 600;
}

.video-scroller {
    max-width: 100%;
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
    mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
    margin-bottom: 60px;
}

.scroller__inner {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    gap: 1rem;
    animation: scroll 40s linear infinite;
}

/* Pausa a animação ao passar o mouse */
.video-scroller:hover .scroller__inner {
    animation-play-state: paused;
}

.video-slide-scroller {
    width: 500px;
    max-width: 40vw;
    height: auto;
    flex-shrink: 0;
    aspect-ratio: 16 / 9;
}

.video-slide-scroller video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Animação de scroll */
@keyframes scroll {
    to {
        transform: translateX(calc(-50% - 0.5rem));
    }
}

/* Opcional: velocidades diferentes */
.video-scroller[data-speed="fast"] {
    --animation-duration: 20s;
}

.video-scroller[data-speed="slow"] {
    --animation-duration: 60s;
}

/* Aplica a duração da animação */
.scroller__inner {
    animation-duration: var(--animation-duration, 40s);
}

/* Seção de recursos */
.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-section {
    text-align: center;
    padding: 0;
    margin-bottom: 60px;
}

.hero-section h1 {
    font-size: 3.5rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.hero-section p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.features-section {
    padding-bottom: 120px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 35px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.icon-container {
    margin-bottom: 25px;
    color: var(--accent);
}

.icon-container svg {
    width: 52px;
    height: 52px;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.feature-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Painel de apresentação */
.showcase-section {
    width: 100%;
    max-width: 1100px;
    margin: 40px auto; 
}

.frosted-container {
    background-color: #1111114b;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    
    border-radius: 24px;
    padding: 40px;
    
    /* Layout interno */
    display: flex;
    align-items: center;
    gap: 40px;
}

/* CONTEÚDO DO PAINEL: TEXTO E IMAGEM */
.intro-text {
    flex-basis: 55%;
    text-align: left;
}

.intro-text h2 {
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.4;
    font-family: 'Playfair Display', serif;
}

.intro-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 400px;
}

.image-container {
    /* Borda gradiente */
    background: linear-gradient(to right, #ebff1300, #ebff1300);
    padding: 3px;
    border-radius: 12px;
    
    /* Dimensionamento e alinhamento */
    flex-basis: 45%;
    min-width: 300px;
    height: fit-content;
}

.image-container img {
    display: block;
    width: 100%;
    border-radius: 10px;
}

/* Seção de serviços */
.services-section {
    padding-bottom: 100px;
}

.services-container {
    /* REMOVIDO: max-width: 1200px; */
    width: 100%; /* Novo: Ocupa toda a largura */
    margin: 0 auto;
    padding: 0; /* Aumentar o padding lateral para preencher a tela */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

/* --- NEW TILT CARD STRUCTURE (Replaces old .service-card) --- */

/* The outer wrapper sets the perspective and the clickable cursor */
.tilt-service-card-wrapper {
    cursor: pointer;
    perspective: 1000px; /* Defines the 3D space */
    border-radius: 12px;
    position: relative; 
    overflow: hidden; 
    height: 100%; 
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25); /* Base Shadow */
    transition: box-shadow 0.8s ease; /* Transition managed by GSAP for mousemove, but reset for mouseleave */
}

/* The inner card is the element that rotates, scales, and contains the visual style */
.tilt-service-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 35px;
    border-radius: 12px;
    transition: none; /* GSAP manages transitions, set to none to prevent conflict */
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    will-change: transform; /* Performance optimization for the rotating element */
}

/* Glare Effect element */
.glare-effect {
    position: absolute;
    inset: -200%; /* Make it large to cover the card during tilt */
    pointer-events: none;
    /* Glare effect: light radial gradient from the center that becomes more opaque at the edge */
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.0) 0%, rgba(255, 255, 255, 0.0) 40%, rgba(255, 255, 255, 0.3) 100%);
    mix-blend-mode: overlay;
    opacity: 0;
    will-change: transform, opacity;
    z-index: 10; /* Above the content, below the accent bar */
}

/* Content wrapper to ensure content is over the glare effect */
.service-card-content {
    position: relative;
    z-index: 11; /* Above glare */
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Accent Bar (kept the original structure, applied to the rotating card) */
.tilt-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 12;
}

/* Re-target the old hover effects to the new wrapper */
.tilt-service-card-wrapper:hover .tilt-service-card::before {
    transform: scaleX(1);
}
.tilt-service-card-wrapper:hover .glare-effect {
    opacity: 1;
}

/* Container do ícone/serviço - AGORA OCUPA MAIS ESPAÇO */
.service-icon {
    margin-bottom: 25px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.2);
    position: relative;
}

/* Imagem do serviço - AGORA OCUPA TODO O CONTAINER */
.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 8px;
}

/* Efeito de zoom na imagem ao passar o mouse */
.tilt-service-card-wrapper:hover .service-icon img {
    transform: scale(1.05);
}

.tilt-service-card h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    flex-grow: 0;
}

.tilt-service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    flex-grow: 1;
    margin-bottom: 0;
}


/* Responsividade */
@media (max-width: 1024px) {
    .features-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .container {
        margin: 40px 0;
        padding: 0 15px;
    }
    
    .container .heading {
        width: 90%;
        padding-bottom: 40px;
    }
    
    .container .heading h3 {
        font-size: 2.5rem;
    }
    
    .container .box {
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 30px;
    }
    
    .container .box .dream {
        width: 95%;
        margin-bottom: 30px;
    }
    
    .video-slide-scroller {
        width: 90vw;
        max-width: 90vw;
    }
    
    .video-scroller .scroller__inner {
        gap: 0.8rem;
    }
    
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    .services-container {
        padding: 0 20px; /* Reduz o padding em telas menores */
    }

    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .frosted-container {
        flex-direction: column;
        padding: 30px 20px;
        gap: 30px;
    }
    
    .intro-text {
        text-align: center;
    }
    
    .intro-text p {
        max-width: 100%;
    }
    
    .image-container {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .container .heading h3 {
        font-size: 2rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .feature-card,
    .tilt-service-card {
        padding: 25px;
    }
    
    .frosted-container {
        padding: 25px 15px;
    }
    
    .intro-text h2 {
        font-size: 1.8rem;
    }
    
    .intro-text p {
        font-size: 1rem;
    }
}

/* Estilo do Cabeçalho - Glassmorphism */
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: transform 0.4s ease-in-out, background-color 0.4s ease-in-out;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(13, 46, 57, 0.6);
    color: var(--text-primary);
}

.header-hidden {
    transform: translateY(-100%);
}

.header-visible {
    transform: translateY(0);
}

.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent);
}

.nav-desktop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Oculta a versão móvel por padrão */
.nav-mobile {
    display: none;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1000;
}

/* Estilo para as 3 barras do ícone de hambúrguer */
.hamburguer-icon {
    width: 35px;
    height: 25px;
    position: relative;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
}

.hamburguer-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--accent);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.hamburguer-icon span:nth-child(1) {
    top: 0;
}

.hamburguer-icon span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburguer-icon span:nth-child(3) {
    bottom: 0;
}

/* Animação para 'X' quando o menu está ativo */
.menu-toggle.active .hamburguer-icon span:nth-child(1) {
    transform: rotate(135deg);
    top: 10px;
}

.menu-toggle.active .hamburguer-icon span:nth-child(2) {
    opacity: 0; /* Esconde a barra do meio */
    left: -30px;
}

.menu-toggle.active .hamburguer-icon span:nth-child(3) {
    transform: rotate(-135deg);
    top: 10px;
}

.logo {
    height: 60px;
}

/* Configurações do menu móvel */
.nav-mobile-menu {
    position: relative;
}

.nav-mobile-menu .mobile-menu {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 75vw; /* largura da tela */
    flex-direction: column;
    padding: 80px 20px 20px;
    z-index: 999;
    list-style: none;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-mobile-menu.active .mobile-menu {
    transform: translateX(0);
}

.nav-mobile-menu .mobile-menu li {
    width: 100%;
    text-align: right;
    margin-bottom: 10px;
}
.nav-mobile-menu .mobile-menu .nav-link {
    display: block;
    padding: 10px 0;
    width: 100%;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}
/* Previne a rolagem da página quando o menu mobile está aberto */
body.body-no-scroll {
    overflow: hidden;
    height: 100%; /* Garante que o corpo não tenha altura ilimitada */
}

@media (max-width: 768px) {
    /* Oculta a versão desktop */
    .nav-desktop {
        display: none;
    }

    /* Exibe e alinha a versão mobile */
    .nav-mobile {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }

    .header-nav {
        padding: 10px 20px;
    }

    .nav-mobile-menu .mobile-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 75vw;
        padding: 80px 20px 20px;
        z-index: 999;
        list-style: none;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        gap: 10px; /* Adiciona espaçamento entre os itens do menu */
    }
    
    .nav-mobile-menu.active .mobile-menu {
        background-color: rgba(13, 46, 57, 0.85); /* Fundo com opacidade para visibilidade */
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        transform: translateX(0);
    }

    /* Alinha os itens do menu à direita */
    .nav-mobile-menu .mobile-menu li {
        width: 100%;
        text-align: right;
    }

    .nav-mobile-menu .mobile-menu .nav-link {
        display: block;
        padding: 10px 0;
        width: 100%;
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
    }

    .menu-overlay.active {
        background-color: rgba(0, 0, 0, 0.4);
        opacity: 1;
        visibility: visible;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }
}

/* novo */
/* Estilos para o Dropdown do menu de navegação - Clicável */
.dropdown-projects {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    position: absolute;
    background-color: var(--tertiary-dark);
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    
    max-height: 0;
    padding: 0 10px;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out, opacity 0.4s ease-in-out;
    opacity: 0;
}

.dropdown-content.open {
    max-height: 300px;
    padding: 10px;
    opacity: 1;
}

.dropdown-content a {
    color: var(--text-primary);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: var(--secondary-dark);
    color: var(--accent);
}

.nav-link.projects-toggle::after {
    content: ' ▼';
    font-size: 0.8em;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav-link.projects-toggle.active::after {
    transform: rotate(180deg);
}

/* Estilos para o Dropdown do menu MÓVEL */
.mobile-dropdown-content {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
}

.mobile-dropdown-content.open {
    max-height: 300px;
    padding-top: 5px;
}

.mobile-projects-toggle::after {
    content: ' ▼';
    font-size: 0.8em;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.mobile-projects-toggle.active::after {
    transform: rotate(180deg);
}

/* ROTAÇÃO */
/* Estilos para a nova seção de logo animada */
.animated-logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

.logo-container {
    width: 150px;
    height: 150px;
}

.rotating-logo {
    width: 100%;
    height: auto;
    display: block;
}

/* Efeito de texto de rolagem */
.animated-text-section {
    padding: 60px 0;
    overflow: hidden;
    white-space: nowrap;
}

.scrolling-text-wrap {
    width: 100%;
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent, #fff 20%, #fff 80%, transparent);
    mask: linear-gradient(90deg, transparent, #fff 20%, #fff 80%, transparent);
}

.scrolling-text {
    display: inline-block;
    font-size: 5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
}

/* Duplique os estilos para um efeito de texto invertido, se desejar */
.scrolling-text-reverse {
    direction: rtl; /* Direção da direita para a esquerda */
}

/* Estilo para o texto */
.scrolling-text span {
    display: inline-block;
    padding-right: 20px;
}
/* Estilo para a segunda linha de texto (opcional, pode ser ajustado) */
.scrolling-text-reverse {
    color: var(--accent);
}
.scrolling-text-wrap {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.scrolling-text-wrap-reverse .scrolling-text {
    direction: rtl; /* Muda a direção do texto para a direita */
}

/* Posicionamento e estilo do texto animado de fundo */
.hero-with-bg {
    position: relative;
    overflow: hidden;
}

.hero-text-overlay {
    position: absolute;
    inset: 0; /* Propriedade abreviada para top: 0; right: 0; bottom: 0; left: 0; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    pointer-events: none;
    white-space: nowrap;
}

.scrolling-text-hero {
    font-size: 8rem;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Playfair Display', serif;
    opacity: 0.1; /* Transparência para o efeito de "magia" */
    color: var(--text-primary);
}

.scrolling-text-hero-reverse {
    direction: rtl; /* Inverte a direção do texto */
    color: var(--accent); /* Cor amarela */
}

/* Animações de rolagem horizontal para o texto de fundo */
@keyframes scroll-hero-forward {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes scroll-hero-backward {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(50%);
    }
}

.scrolling-text-hero {
    animation: scroll-hero-forward 40s linear infinite;
}

.scrolling-text-hero-reverse {
    animation: scroll-hero-backward 40s linear infinite;
}

/* Responsividade - Ajuste o tamanho do texto para telas menores */
@media (max-width: 1200px) {
    .scrolling-text-hero {
        font-size: 6rem;
    }
}

@media (max-width: 768px) {
    .scrolling-text-hero {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    .scrolling-text-hero {
        font-size: 2.5rem;
    }
}