/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Configurações do body conforme solicitado */
body {
    font-family: "JetBrains Mono", "PP Supply Mono", monospace;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
}

/* Container principal */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out, border-bottom 0.3s ease-in-out;
    transform: translateY(0);
}

/* Header escondido quando rola para baixo */
.header.hidden {
    transform: translateY(-100%);
}

/* Header com fundo quando rola para cima */
.header.scrolled {
    background-color: rgb(0, 0, 0);
    border-bottom: 1px solid #cccccc1a;
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.logo img {
    height: 40px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo img:hover {
    opacity: 0.8;
}

/* Navegação */
.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 12px 10px;
    background-color: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(5px);
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 18px;
    border-radius: 4px;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Link ativo com fundo */
.nav-link.active {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Link de contato */
.contact {
    color: #fff;
    text-decoration: underline;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.contact:hover {
    opacity: 0.7;
}

/* Menu mobile - oculto por padrão */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main content */
.main {
    padding-top: 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Video Background */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.7; /* Ajuste a opacidade conforme necessário */
}

/* Garantir que o conteúdo fique acima do vídeo */
.main .container {
    position: relative;
    z-index: 1;
}

/* Texto superior */
.top-text {
    text-align: center;
    margin-bottom: 60px;
}

.top-text p {
    font-size: 14px;
    font-weight: 300;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero section */
.hero {
    text-align: center;
}

.hero-title {
    font-size: 120px;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.title-line {
    display: block;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Services Section */
.services {
    max-width: 1400px;
    width: 100%;
    margin: auto;
    padding: 50px 20px;
    position: relative;
    overflow: hidden; /* Adicionar para conter as imagens */
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #333;
    padding: 30px 0;
    position: relative;
    overflow: visible;
    cursor: pointer;
    transition: background-color 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
    z-index: 1; /* Adicionar z-index base */
}

.service-item:hover {
    background-color: #1111116b;
    z-index: 10; /* Elevar z-index no hover */
}

.service-item:last-child {
    border-bottom: 1px solid #333;
}

.service-number {
    flex: 0 0 50px;
    z-index: 2; /* Garantir que fique acima da imagem */
    position: relative;
}

.service-title {
    flex: 1;
    font-size: 1.5rem;
    color: #fbf7ec;
    font-weight: 500;
    transform: translateX(-30px);
    z-index: 2; /* Garantir que fique acima da imagem */
    position: relative;
}

.service-desc {
    flex: 2;
    max-width: 600px;
    font-size: 1rem;
    color: #fbf7ec;
    padding-right: 40px;
    transform: translateX(-40px);
    z-index: 2; /* Garantir que fique acima da imagem */
    position: relative;
}

.arrow {
    flex: 0 0 40px;
    font-size: 1.5rem;
    transform: translateX(20px) rotate(-45deg);
    transition: transform 0.3s ease;
    z-index: 2; /* Garantir que fique acima da imagem */
    position: relative;
}

.service-item:hover .arrow {
    transform: translateX(10px) rotate(0deg);
}

/* Imagem posicionada sobre a div */
.service-image {
    position: absolute;
    top: 50%;
    right: 52%;
    width: 320px;
    height: 420px;
    object-fit: contain;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 5; /* Reduzir z-index para ficar abaixo do texto mas acima do fundo */
    transform: translateY(-50%) scale(0.8) rotate(5deg);
    pointer-events: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.068);
    filter: blur(2px);
}

/* Efeito ao passar o mouse */
.service-item:hover .service-image {
    opacity: 1;
    transform: translateY(-50%) scale(1) rotate(0deg);
    filter: blur(0px);
}

/* Cursor personalizado */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

/* Animações e transições */
.hero-title {
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.top-text p {
    animation: fadeInUp 1s ease-out 0.1s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estados hover e focus */
.nav-link:focus,
.contact:focus {
    outline: 2px solid rgba(255, 255, 255, 0.3);
    outline-offset: 2px;
}

/* Menu mobile ativo */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* ===== MEDIA QUERIES RESPONSIVAS ===== */

/* Extra Large devices (1400px and down) */
@media (max-width: 1400px) {
    .services {
        width: 95%;
        max-width: 1200px;
        padding: 40px 20px;
    }
    
    .service-image {
        width: 280px;
        height: 360px;
        right: 50%;
    }
}

/* Large devices (1200px and down) */
@media (max-width: 1200px) {
    .services {
        width: 95%;
        padding: 30px 15px;
    }
    
    .service-title {
        font-size: 1.6rem;
    }
    
    .service-desc {
        font-size: 0.95rem;
        padding-right: 30px;
    }
    
    .service-image {
        width: 250px;
        height: 320px;
        right: 48%;
    }
}

/* Tablets grandes e desktops pequenos - 992px */
@media (max-width: 992px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 90px;
    }
    
    .nav-list {
        gap: 25px;
    }
    
    .nav-link {
        padding: 6px 12px;
        font-size: 15px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        max-width: 700px;
    }
    
    .services {
        width: 100%;
        padding: 25px 15px;
    }
    
    .service-item {
        padding: 25px 0;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
    
    .service-desc {
        font-size: 0.9rem;
        max-width: 500px;
    }
    
    .service-image {
        width: 220px;
        height: 280px;
        right: 45%;
    }
}


.content-wrapper {
                padding: 50px 20px;
            }
            
            .main-title {
                font-size: 5rem;
            }
            
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2px;
            }
            
            .service-card {
                min-height: 250px;
                padding: 35px 25px;
            }
        

/* Tablets - 768px */
@media (max-width: 768px) {
    .header {
        padding: 15px 0;
    }
    
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        border: none;
        border-radius: 0;
        padding: 20px;
        gap: 15px;
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .contact {
        display: none;
    }
    
    .hero-title {
        font-size: 70px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        max-width: 90%;
    }
    
    .main {
        padding-top: 100px;
    }
    
    .top-text {
        margin-bottom: 40px;
    }
    
    .logo a {
        font-size: 20px;
    }
    
    .logo img {
        height: 35px;
    }
    
    .services {
        padding: 20px 20px;
    }
    
    .service-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 0;
        text-align: left;
    }
    
    .service-number {
        margin-bottom: 10px;
        transform: none;
    }
    
    .service-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
        transform: none;
        padding-right: 15px;
        padding-left: 10px;
    }
    
    .service-desc {
        font-size: 0.85rem;
        max-width: 100%;
        padding-right: 15px;
        padding-left: 10px;
        margin-bottom: 15px;
        transform: none;
    }
    
    .arrow {
        align-self: flex-end;
        transform: translateX(20px) rotate(-45deg);
        padding-right: 35px;
    }
    
    /* IMAGENS OCULTAS A PARTIR DE 768px */
    .service-image {
        display: none;
    }
}



.content-wrapper {
                padding: 40px 15px;
            }
            
            .main-title {
                font-size: 4rem;
            }
            
            .subtitle {
                font-size: 1rem;
                margin-bottom: 40px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
                gap: 2px;
            }
            
            .service-card {
                min-height: 200px;
                padding: 30px 20px;
            }
            
            .service-title {
                font-size: 1.2rem;
            }
            
            .service-description {
                font-size: 0.9rem;
            }
            
            .bottom-section {
                flex-direction: column;
                gap: 20px;
                text-align: center;
                padding: 25px 20px;
            }
        

/* Smartphones grandes - 576px */
@media (max-width: 576px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 50px;
        margin-bottom: 30px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        max-width: 95%;
    }
    
    .top-text p {
        font-size: 12px;
        max-width: 95%;
    }
    
    .main {
        padding-top: 90px;
    }
    
    .top-text {
        margin-bottom: 30px;
    }
    
    .logo a {
        font-size: 18px;
    }
    
    .logo img {
        height: 30px;
    }
    
    .header {
        padding: 12px 0;
    }
    
    .services {
        padding: 15px 8px;
    }
    
    .service-item {
        padding: 15px 0;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .service-desc {
        font-size: 0.8rem;
    }
    
    .arrow {
        font-size: 1.2rem;
    }
    
    /* IMAGENS CONTINUAM OCULTAS */
    .service-image {
        display: none;
    }
}



.content-wrapper {
                padding: 30px 15px;
            }
            
            .main-title {
                font-size: 3rem;
                margin-bottom: 15px;
            }
            
            .subtitle {
                font-size: 0.95rem;
                margin-bottom: 30px;
            }
            
            .service-card {
                min-height: 180px;
                padding: 25px 20px;
            }
            
            .service-title {
                font-size: 1.1rem;
                margin-bottom: 15px;
            }
            
            .service-description {
                font-size: 0.85rem;
                line-height: 1.5;
            }
            
            .action-button {
                font-size: 1rem;
            }
        

/* Smartphones pequenos - 480px */
@media (max-width: 480px) {
    .hero-title {
        font-size: 30px;
        line-height: 1;
        margin-bottom: 25px;
    }
    
    .hero-subtitle {
        font-size: 10px;
        line-height: 1.4;
    }
    
    .top-text p {
        font-size: 10px;
    }
    
    .main {
        padding-top: 80px;
    }
    
    .top-text {
        margin-bottom: 25px;
    }
    
    .logo a {
        font-size: 16px;
    }
    
    .logo img {
        height: 28px;
    }
    
    .nav-list {
        padding: 15px;
    }
    
    .nav-link {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .services {
        padding: 10px 5px;
    }
    
    .service-item {
        padding: 12px 0;
    }
    
    .service-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .service-desc {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .custom-cursor {
        display: none;
    }
    
    /* IMAGENS CONTINUAM OCULTAS */
    .service-image {
        display: none;
    }
}

.content-wrapper {
                padding: 25px 12px;
            }
            
            .main-title {
                font-size: 2.5rem;
            }
            
            .subtitle {
                font-size: 0.9rem;
            }
            
            .service-card {
                min-height: 160px;
                padding: 20px 15px;
            }
            
            .service-title {
                font-size: 1rem;
            }
            
            .service-description {
                font-size: 0.8rem;
            }
            
            .bottom-section {
                padding: 20px 15px;
            }
        

/* Very Small devices (320px and down) */
@media (max-width: 320px) {
    .services {
        padding: 8px 3px;
    }
    
    .service-item {
        padding: 10px 0;
    }
    
    .service-number {
        font-size: 0.9rem;
    }
    
    .service-title {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .service-desc {
        font-size: 0.7rem;
        line-height: 1.3;
    }
    
    .arrow {
        font-size: 1rem;
    }
    
    /* IMAGENS CONTINUAM OCULTAS */
    .service-image {
        display: none;
    }
}


.content-wrapper {
                padding: 20px 10px;
            }
            
            .main-title {
                font-size: 2rem;
            }
            
            .subtitle {
                font-size: 0.85rem;
                margin-bottom: 25px;
            }
            
            .service-card {
                min-height: 150px;
                padding: 18px 12px;
            }
            
            .service-title {
                font-size: 0.9rem;
                margin-bottom: 12px;
            }
            
            .service-description {
                font-size: 0.75rem;
            }
            
            .bottom-section {
                padding: 18px 12px;
            }
            
            .action-button {
                font-size: 0.9rem;
            }
        

/* Menu Modal Responsivo */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobile-menu-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1.5rem, 4vw, 3rem);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu {
    width: 100%;
    max-width: 500px;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: clamp(2rem, 6vw, 4rem);
    height: 100%;
    max-height: 80vh;
}

/* Header do menu */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.mobile-menu-header::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active .mobile-menu-header::after {
    transform: scaleX(1);
}

.mobile-menu-logo img {
    height: clamp(2rem, 5vw, 2.5rem);
    width: auto;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #fff;
    font-size: clamp(1.5rem, 4vw, 2rem);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    opacity: 0;
    transform: scale(0.8) rotate(-90deg);
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1) rotate(90deg);
}

/* Lista do menu */
.mobile-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: clamp(0.5rem, 2vw, 1rem);
    align-self: center;
    width: 100%;
}

.mobile-menu-item {
    overflow: hidden;
}

.mobile-menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(1rem, 3vw, 1.5rem) 0;
    color: #fff;
    text-decoration: none;
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 600;
    line-height: 1;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    transform: translateY(50px);
}

.mobile-menu-link:hover {
    color: #ccc;
    padding-left: 1rem;
}

.mobile-menu-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #fff, transparent);
    transform: translateY(-50%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-link:hover::before {
    width: 2rem;
}

.link-text {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.link-number {
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 400;
    opacity: 0.6;
    font-family: 'JetBrains Mono', monospace;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Footer do menu */
.mobile-menu-footer {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 4vw, 2rem);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-contact-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(1rem, 3vw, 1.5rem);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.mobile-contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
}

.mobile-contact-btn:hover::before {
    left: 100%;
}

.mobile-contact-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.mobile-contact-btn svg {
    transition: transform 0.3s ease;
}

.mobile-contact-btn:hover svg {
    transform: translate(4px, -4px);
}

.mobile-menu-social {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-label {
    font-size: clamp(0.875rem, 2vw, 1rem);
    opacity: 0.6;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: #fff;
    text-decoration: none;
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 6px;
    position: relative;
}

.social-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #fff;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.social-link:hover::after {
    width: 80%;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Animações com delay escalonado */
.mobile-menu-item:nth-child(1) .mobile-menu-link { transition-delay: 0.1s; }
.mobile-menu-item:nth-child(2) .mobile-menu-link { transition-delay: 0.2s; }
.mobile-menu-item:nth-child(3) .mobile-menu-link { transition-delay: 0.3s; }
.mobile-menu-item:nth-child(4) .mobile-menu-link { transition-delay: 0.4s; }

/* Estados ativos */
.mobile-menu-overlay.active .mobile-menu-backdrop {
    opacity: 1;
}

.mobile-menu-overlay.active .mobile-menu-container {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-overlay.active .mobile-menu-logo img {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu-overlay.active .mobile-menu-close {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.mobile-menu-overlay.active .mobile-menu-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-overlay.active .mobile-menu-footer {
    opacity: 1;
    transform: translateY(0);
}

/* Animação do botão mobile */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsividade */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav {
        display: none;
    }
    
    .contact-link {
        display: none;
    }
}

@media (max-width: 480px) {
    .mobile-menu-container {
        padding: 1rem;
    }
    
    .mobile-menu {
        max-height: 90vh;
    }
}

/* Prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .mobile-menu-overlay,
    .mobile-menu,
    .menu-link-text,
    .mobile-menu-close,
    .mobile-contact-btn,
    .social-links a {
        transition: none;
    }
    
    .mobile-menu-close:hover {
        transform: none;
    }
    
    .mobile-contact-btn:hover {
        transform: none;
    }
    
    .mobile-contact-btn:hover svg {
        transform: none;
    }
    
    .social-links a:hover {
        transform: none;
    }
}

/* Estados de foco para acessibilidade */
.mobile-menu-close:focus,
.mobile-menu-link:focus,
.mobile-contact-btn:focus,
.social-links a:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}



        /* Container principal com padrão geométrico de fundo */
        .main-container {
            background: #000;
            background-image: 
                linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.02) 50%, transparent 60%),
                linear-gradient(-45deg, transparent 40%, rgba(255,255,255,0.02) 50%, transparent 60%);
            background-size: 60px 60px;
            min-height: 100vh;
            position: relative;
        }

        /* Overlay para dar profundidade ao fundo */
        .background-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.3) 70%);
            pointer-events: none;
        }

        /* Container de conteúdo principal */
        .content-wrapper {
            position: relative;
            z-index: 1;
            padding: 60px 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Título principal SERVICES */
        .main-title {
            font-size: 6rem;
            font-weight: 900;
            letter-spacing: -0.02em;
            margin-bottom: 20px;
            text-transform: uppercase;
            line-height: 0.9;
        }

        /* Subtítulo */
        .subtitle {
            font-size: 1.1rem;
            font-weight: 300;
            color: #fff8e6;
            margin-bottom: 60px;
            max-width: 500px;
            line-height: 1.4;
            opacity: 0.9;
        }

        /* Grid de serviços */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2px;
            margin-bottom: 60px;
            background: #333;
        }

        /* Card de serviço individual */
        .service-card {
            background: #1a1a1a;
            padding: 40px 30px;
            min-height: 280px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card:hover {
            background: #222;
            transform: translateY(-2px);
        }

        /* Efeito de hover sutil */
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #fff, transparent);
            transition: left 0.5s ease;
        }

        .service-card:hover::before {
            left: 100%;
        }

        /* Títulos dos serviços */
        .service-title {
            font-size: 1.4rem;
            color: #fff8e6;
            font-weight: 700;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Descrições dos serviços */
        .service-description {
            font-size: 0.95rem;
            color: #fff8e6;
            line-height: 1.6;
            opacity: 0.8;
            font-weight: 300;
        }

        /* Seção inferior com botões */
        .bottom-section {
            background: #1a1a1a;
            padding: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 40px;
            border-radius: 0;
        }

        /* Botões de ação */
        .action-button {
            background: transparent;
            border: none;
            color: #fff;
            font-size: 1.1rem;
            font-weight: 500;
            cursor: pointer;
            padding: 15px 0;
            transition: all 0.3s ease;
            position: relative;
        }

        .action-button:hover {
            opacity: 0.7;
        }

        /* Botão "Get in touch" com círculo */
        .contact-button {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .contact-circle {
            width: 12px;
            height: 12px;
            background: #fff;
            border-radius: 50%;
            transition: transform 0.3s ease;
        }

        .contact-button:hover .contact-circle {
            transform: scale(1.2);
        }



        /* Animações suaves ao carregar */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .main-title {
            animation: fadeInUp 0.8s ease-out;
        }

        .subtitle {
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        .service-card {
            animation: fadeInUp 0.8s ease-out calc(0.4s + var(--delay, 0s)) both;
        }

        .bottom-section {
            animation: fadeInUp 0.8s ease-out 0.8s both;
        }