/* Estilos Gerais */

html {
    scroll-behavior: smooth;
}
#logo_footer_delfinance {
    height: 12px !important; 
    width: 12px !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    background-color: #f5f5f5;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}


/* Cabeçalho */
.header {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 82px;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

.nav ul {
    display: flex;
    list-style: none;
    justify-content: flex-end;
}

.nav ul li {
    margin-left: 30px;
}

.nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav ul li a:hover {
    color: #670ff5; /* Roxo */
}

.contact-btn {
    border: 2px solid #670ff5; /* Roxo */
    padding: 8px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #670ff5; /* Roxo */
    color: #ffffff !important; /* Alterado para branco */
}

/* Menu Hambúrguer */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Seção Hero */
.hero {
    height: 100vh;
    background-color: #000000;
    position: relative;
    overflow: hidden;
}


/* Fundo sem linhas */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero .container {
    margin-top: 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    justify-content: space-between;
    padding: 0 1%;
    gap: 50px
}

.hero-content {
    flex: 0.9;
    max-width: 45%;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    text-align: left;
    align-items: flex-start;
}

/* Animação dos sistemas */
.hero-animation {
    flex: 1.1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 55%;
    perspective: 1500px;
}

.macbook-container {
    width: 100%;
    max-width: 500px;
    height: 300px;
    display: flex;
    justify-content: flex-start; /* Alterado para alinhar o conteúdo mais ao topo */
    align-items: center;
    animation: rotate3d 20s infinite linear;
    transform-style: preserve-3d;
    position: relative;
}

.macbook-container:hover {
    animation-play-state: paused;
}

.macbook {
    width: 100%;
    max-width: 600px; /* ajusta o tamanho do mackbookl */
    height: 300px;
    position: absolute;
    transform-style: preserve-3d;
    transform: rotateX(0deg);
    box-shadow: none; /* Removido o sombreamento lateral */
    backface-visibility: hidden; 
}

.macbook-1 {
    transform: rotateY(0deg) translateZ(200px);
}

.macbook-2 {
    transform: rotateY(120deg) translateZ(200px);
}

.macbook-3 {
    transform: rotateY(240deg) translateZ(200px);
}

.macbook-container::after {
    content: ''; 
    position: absolute; 
    width: 120%;
    height: 20px; 
    background: radial-gradient(ellipse at center, rgba(103, 15, 245, 0.4) 0%, rgba(0,0,0,0) 70%); /* Gradiente radial */
    bottom: -40px; /* Ajustado para posicionar mais abaixo */
    left: -8%; /* Ajustado para posicionar mais à esquerda */
    border-radius: 50%; /* Borda arredondada */
    filter: blur(8px); /* Aumentado o blur */
    transform: rotateX(90deg); /* Rotaciona para cima */
    animation: reflection 20s infinite linear; 
}

/* Efeito de linhas de escaneamento verde removido */
.macbook-screen::before {
    display: none;
}

@keyframes scanlines {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 100%;
    }
}

@keyframes reflection {
    0% {
        opacity: 0.2;
    }
    25% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.2;
    }
    75% {
        opacity: 0.4;
    }
    100% {
        opacity: 0.2;
    }
}

.macbook-screen {
    width: 100%;
    height: 280px;
    background-color: #000000;
    border-radius: 15px 15px 0 0;
    position: relative;
    transform-style: preserve-3d;
    overflow: hidden;
    border: 1px solid #670ff5; /* Alterado para cinza claro, mesma tonalidade do corpo do MacBook */
    box-shadow: none;
}

/* Círculo central removido */
.macbook-screen::after {
    display: none;
}

.screen-content {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background-color: #000000;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: none;
    border: none;
}


.system-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Largura total */
    height: 100%; /* Altura total */
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Alterado para alinhar o conteúdo mais ao topo */
    align-items: center;
    padding: 10px 20px; /* Reduzido o padding vertical para posicionar mais acima */
    background-color: #000;
    background-image: none;
}

.system-slide.active {
    opacity: 1;
    z-index: 2;
    animation: fadeInScale 0.8s ease-out forwards;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}



.system-content { 
    color: white; /* Cor do texto */
    text-align: center;     /* Centraliza o texto */
    text-shadow: 0 2px 4px rgba(0,0,0,0.5); /* Sombra do texto */
    background-color: #000000; /* Fundo preto */
    padding: 20px; /* Reduzido o padding para ajudar a posicionar o conteúdo mais acima */
    border-radius: 16px; /* Borda arredondada */
    
    width: 80%; /* Largura do conteúdo */
    display: flex; /* Alinha o conteúdo horizontalmente */
    flex-direction: column; /* Alinha o conteúdo verticalmente */
    align-items: center; /* Centraliza o conteúdo */
    margin: 0 auto 0; /* Removida a margem superior para posicionar o conteúdo no topo */
    backdrop-filter: blur(10px); /* Efeito de desfoque */
    
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.system-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.system-content h3 {
    font-size: 28px; /* Reduzido de 32px para 28px */
    font-weight: 700;
    margin-bottom: 10px; /* Reduzido de 15px para 10px */
    color: #670ff5; /* Roxo */
    letter-spacing: 1px; /* Reduzido de 2px para 1px */
    position: relative;
    display: inline-block;
}

.system-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px; /* Ajustado para ficar mais próximo do texto */
    left: 50%;
    transform: translateX(-50%);
    width: 50px; /* Reduzido de 60px para 50px */
    height: 2px; /* Reduzido de 3px para 2px */
    background: linear-gradient(to right, transparent, #670ff5, transparent); /* Gradiente roxo */
    border-radius: 2px;
}

.system-content p {
    font-size: 16px; /* Reduzido de 18px para 16px */
    line-height: 1.4; /* Reduzido de 1.6 para 1.4 */
    margin: 17px 0 0; /* Reduzido a margem superior para mover o texto para cima */
    color: rgba(255, 255, 255, 0.9);
    max-width: 90%; /* Aumentado de 80% para 90% */
    position: relative;
    text-align: center;
    padding: 0 5px; /* Reduzido de 10px para 5px */
}

/* Conteúdo dentro do macbook */
.system-content .tech-badges {
    display: flex;
    justify-content: flex-start; /* Alterado para alinhar o conteúdo mais ao topo */
    gap: 15px;
    margin-top: -5px;
}

.tech-badge {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(103, 15, 245, 0.3); /* Borda roxa */
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8); /* Cor do texto */
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(103, 15, 245, 0.2);
}

.tech-badge:hover {
    background: rgba(103, 15, 245, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 0 6px rgba(103, 15, 245, 0.4); /* linha azul em volta dos produtos */
}

.tech-badge::before { 
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #670ff5; /* Roxo */
    border-radius: 50%;
    box-shadow: 0 0 5px #670ff5;
}



#system1, #system2, #system3 {
    background: #000000;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

#system1::before, #system2::before, #system3::before {
    display: none;
}



#system3 {
    background: #000000;
    background-size: cover;
    background-position: center;
}

/* Seção de Logos */
.logos-section {
    padding: 40px 0;
    background-color: #ffffff;
    text-align: center;
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 20px;
}

.logo-item {
    max-width: 200px;
    transition: all 0.3s ease;
}

.logo-item:hover {
    transform: scale(1.05);
}

.logo-item img {
    width: 100%;
    height: auto;
}

.macbook-body {
    width: 100%;
    height: 20px;
    background-color: #888; /* Cor do corpo do Mac */
    position: absolute;
    top: 280px;
    border-radius: 0 0 10px 10px;
    transform-style: preserve-3d;
    background-image: linear-gradient(to bottom, #999, #777);
}

.macbook-keyboard {
    width: 95%;
    height: 5px;
    background-color: #777;
    position: absolute;
    top: 285px;
    left: 2.5%;
    border-radius: 0 0 5px 5px;
    background-image: linear-gradient(to bottom, #888, #666);
}

@keyframes rotate3d {
    0% {
        transform: rotateY(0deg) rotateX(0deg);
    }
    25% {
        transform: rotateY(90deg) rotateX(0deg);
    }
    50% {
        transform: rotateY(180deg) rotateX(0deg);
    }
    75% {
        transform: rotateY(270deg) rotateX(0deg);
    }
    100% {
        transform: rotateY(360deg) rotateX(0deg);
    }
}


.hero h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.9); 
}

.cta-button {
    display: inline-block;
    background-color: #670ff5; /* Roxo */
    color: #ffffff; /* Alterado para branco */
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600; /* Texto em negrito */
    font-size: 18px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: #5a0dd8; /* Roxo mais escuro */
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Seção Sobre */
.about {
    padding: 80px 0;
    background-color: #ffffff;
    color: #000000;
}

.about .container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.about h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
}

.about h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #670ff5;
    margin: 15px auto 30px;
    border-radius: 2px;
}

/* Seção Programação - Timeline */
.schedule {
    padding: 80px 0;
    background-color: #f5f5f5;
    color: #000000;
}

.schedule .container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.schedule h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
}

.schedule h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #670ff5;
    margin: 15px auto 30px;
    border-radius: 2px;
}

.schedule p {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
    overflow: hidden;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 134px;
    width: 4px;
    background-color: #670ff5;
    margin-left: -8px; /* Alinhar as bolinhas roxas */ 
}

.timeline-item {
    position: relative;
    margin-bottom: 30px; /* epaçamento entre as bordas */
}

.timeline-item:last-child::before {
    height: 100%; /* O último item não precisa se estender além */
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.time { /* Alinhar os horários */ 
    width: 120px; /* espaçamento da palavra (esquerda - e direita +) */
    text-align: right;
    padding-right: 25px;
    font-size: 18px;
    margin-top: 18px;
    font-weight: 600; /* grossura da letra */
    color: #333;
    float: left;
}

.timeline-content {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-left: 150px;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 20px;
    width: 16px;
    height: 16px;
    background-color: #670ff5;
    border: 3px solid #ffffff;
    border-radius: 50%;
    z-index: 1;
}

.timeline-content h3 {
    color: #670ff5; /* Cor do título */
    font-size: 20px;    /* Tamanho da fonte */
    margin: 0 0 10px 0; /* Espaçamento inferior */
    text-align: left;   /* Alinhado à esquerda */
    line-height: 1.3;  /* Altura da linha */
    padding: 0;         /* Removido o espaçamento interno */
    font-weight: 700; /* Peso da fonte */
}

.timeline-content p { /* Adicionado para o subtítulo do evento */
    font-size: 16px; /* Tamanho da fonte */
    color: #666; /* Cor do texto */
    margin-left: 0; /* Removido o espaçamento */
    padding-left: 0;
    display: block; /* Bloco para que o subtítulo seja exibido em uma nova linha */;
    text-align: left; /* Alinhado à esquerda */
}

/* Responsividade para a Timeline */
@media (min-width: 1024px) {
.footer_spaced {
    width: 100%; 
    display: flex; 
    justify-content: space-between;
}
.footer-right {
    display: flex;
    justify-content: space-between;
    width: 32%;
    align-items: end;
}
    
}
@media (max-width: 768px) {
    
    
    .timeline::before {
        display: none; /* Removida a timeline azul */
    }
    
    .time {
        width: auto;
        font-size: 16px;
        padding: 6px 10px;
        color: #670ff5;
        font-weight: 700;
        text-align: center;
        float: none;
        margin-bottom: 15px;
        border: 2px solid #670ff5;
        border-radius: 25px;
        background-color: #ffffff;
        display: inline-block;
        position: relative;
        z-index: 2;
        transform: translateY(20px); /* Ajuste para centralizar verticalmente */
    }
    
    .timeline-content {
        display: flex;
        flex-direction: column;
        justify-content: center !important;
        margin-left: 0;
        margin-bottom: 10px; /* Reduzido o espaçamento inferior */
        width: 100% !important;
        margin: 0 auto; /* Centralizado horizontalmente */
        position: relative;
        z-index: 2;
    }
    .timeline-content p {
        display: block;
        font-size: 14px !important; 
    }
    .timeline-content h3 {
        display: block;
        text-align: center;
    }
    
    .timeline-content::before {
        display: none; /* Removido o círculo da timeline */
    }
    
    .timeline-item {
        align-items: center;
        margin-bottom: 15px; /* espaçamento entre os itens da timeline */
        display: flex;
        flex-direction: column;
        position: relative;
    }
    
    .timeline-item:last-child::before {
        height: 90%; /* O último item (traço azul) não precisa se estender além */
    }
    
    /* Linha vertical que conecta o horário ao conteúdo */
    .timeline-item::before {
        content: '';
        position: absolute;
        top: 0; /* Começa do topo do item */
        height: calc(100% + 15px); /* Estende além do item para conectar ao próximo */
        width: 2px;
        background-color: #670ff5; /* Mesma cor roxa */
        z-index: 1; /* Atrás do conteúdo */
        opacity: 0.7;
    }
}

@media (max-width: 480px) {
    .timeline::before {
        display: none; /* Removida a timeline azul */
    }
    
    .time {
        width: auto;
        font-size: 14px;
        padding: 5px 8px;
        margin-top: 0;
        margin-bottom: 10px; /* Restaurado o espaçamento original */
        text-align: center;
        border: 2px solid #670ff5;
        border-radius: 25px;
        background-color: #ffffff;
        color: #670ff5;
        font-weight: 700;
        display: inline-block;
        position: relative;
        z-index: 2;
        transform: translateY(-6px); /* Ajuste para centralizar verticalmente as linhas azuis em telas menores */
    }
    
    .timeline-content {
        padding: 15px;
        margin-left: 0;
        text-align: center;
        margin-bottom: 10px; /* Reduzido o espaçamento inferior */
        width: 90%;
        margin: 0 auto 10px; /* Reduzido o espaçamento inferior */
        position: relative;
        z-index: 2;
    }
    
    .timeline-content::before {
        display: none; /* Removido o círculo da timeline */
    }
    
    /* Linha vertical que conecta o horário ao conteúdo */
    .timeline-item::before {
        top: 0; /* Começa do topo do item */
        height: calc(100% + 15px); /* Estende além do item para conectar ao próximo */
    }
    
    .timeline-content h3 {
        font-size: 18px;
    }
    
    .timeline-content p {
        font-size: 14px;
    }
    
    .hero-animation {
        max-height: 320px;
    }
    
    .macbook-container {
        max-width: 320px;
        height: 240px;
    }
    
    .macbook {
        max-width: 340px;
        height: 240px;
    }
    
    .macbook-screen {
        height: 220px;
    }
    
    .macbook-body {
        top: 220px;
    }
    
    .macbook-keyboard {
        top: 225px;
    }
    
    .system-content {
        width: 95%;
        padding: 12px;
    }
    
    .system-content h3 {
        font-size: 16px;
    }
    
    .system-content p {
        font-size: 14px;
        max-width: 95%;
    }
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-top: 20px;
}

.about-text {
    flex: 1;
    max-width: 50%;
}

.about-text p {
    margin-bottom: 20px;
    color: #333333;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 600; /* Alterado para semi-bold */
}

.about-text .cta-button {
    display: inline-block;
    background-color: #670ff5;
    color: #ffffff; /* Alterado para branco */
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    margin-top: 10px;
}

.about-text .cta-button:hover {
    background-color: #5a0dd8;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.about-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background-color: #f5f5f5; /* Cor de fundo mais clara */
    border-radius: 10px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* Adicionada sombra */
}

.info-card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #670ff5; /* Alterado para roxo */
}

.info-card-icon img {
    width: 100%;
    height: auto;
    filter: hue-rotate(260deg) saturate(2); /* Filtro para tornar ícones roxos */
}

.info-card-content {
    flex: 1;
}

.info-card-content h3 { 
    color: #670ff5; /* Roxo */
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
}

.info-card-content p { 
    color: #333333; /* Cor mais escura (subtitulo) */
    font-size: 16px;
    margin: 0;
}

/* Seção Programação */
.schedule {
    padding: 80px 0;
    background-color: #f5f5f5;
    color: #000000;
}

.schedule h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #000000; 
    text-align: center;
}

.schedule p {
    font-size: 25px;  /* Tamanho da fonte programação (estava 18)*/
    max-width: 800px;
    margin: 0 auto;
    color: #333333;
}



/* Footer */
.footer {
    background-color: #000000;
    padding: 40px 0;
}


.footer .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    justify-content: center;
}

.footer-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-info {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-weight: 600; /* Alterado para semi-bold */
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact a:hover {
    color: #670ff5;
}

.footer-contact a svg {
    margin-right: 10px;
}



.footer-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.footer-logos img {
    height: 40px;
    width: auto;
    margin-left: 0;
}

/* Alinhamento dos logotipos à direita apenas na versão desktop */
@media (min-width: 769px) {
    /* .footer-right {
    display: flex;
    align-items: flex-start;
    flex-direction: column-reverse;
    width: 100%;
    } */
    
    .footer-logos {
        justify-content: flex-end;
        margin-right: -800px; /* Ajuste para posicionar os logotipos à direita */
    }
    
    .footer-copyright {
        justify-content: flex-end;
        text-align: right;
    }
}

.footer-copyright {
    margin-top: -17px; /* Espaçamento entre as duas logos e o texto "Powered" */
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
}

.footer-copyright span {
    margin-right: 5px;
}

.footer-copyright a {
    color: #e6e6e6c9;
    text-decoration: none;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 992px) {
    .hero {
        height: 100%;
    }

    .hero .container {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-content, .hero-animation {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .hero-content {
        margin-bottom: 20px;
        padding-top: 100px;
    }
    
    .hero-animation {
        justify-content: center;
        margin-right: 0;
        max-height: 350px;
    }
    
    .hero-content::after {
        display: none;
    }
    
    .hero h1 {
        font-size: 40px;
    }
    
    .nav ul li {
        margin-left: 15px;
    }
    
    .about-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-text {
        max-width: 100%;
    }
    
    .about-cards {
        width: 100%;
    }
    
    .macbook-container {
        animation-duration: 25s;
        max-width: 450px;
        height: 280px;
    }
    
    .macbook {
        max-width: 500px;
        height: 280px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 0 0 100px
    }

    .hero-animation {
        max-height: 380px;
    }
    
    .macbook-container {
        max-width: 420px;
        height: 280px;
    }
    
    .macbook {
        max-width: 420px;
        height: 280px;
    }
    
    .macbook-screen {
        height: 260px;
    }
    
    .macbook-body {
        top: 260px;
    }
    
    .macbook-keyboard {
        top: 265px;
    }
    
    .system-content {
        width: 90%;
        padding: 4px;
        margin-top: -10px; /* Movendo o conteúdo para cima */
    }
    
    .system-content h3 {
        font-size: 18px; /* fonte do texto do mac*/
        margin-bottom: 5px; /* Reduzindo o espaço após o título */
    }
    
    .system-content p {
        font-size: 10px; /* texto do mac */
        max-width: 110%;
        margin-bottom: 5px; /* Reduzindo o espaço após o parágrafo */
    }
    
    /* Ajustes para os tech-badges na versão mobile */
    .system-content .tech-badges {
        margin-top: 2px; /* Reduzindo o espaço antes dos badges */
        gap: 5px; /* Reduzindo o espaço entre os badges */
    }
    
    .tech-badge {
        padding: 3px 8px; /* Reduzindo o padding dos badges */
        font-size: 9px; /* Reduzindo o tamanho da fonte */
    }
    
    /* Menu hambúrguer para mobile */
    .menu-toggle {
        display: flex;
    }
    
    /* Ajuste para alinhar logo à esquerda e menu à direita */
    .header .container {
        justify-content: space-between;
    }
    
    .logo {
        text-align: left;
        float: left;
        margin-left: -60%;
    }
    
    .menu-toggle {
        float: right;
        margin-right: -60%;
    }
    
    .nav {
        position: fixed;
        top: 25px; /* Ajuste para posicionar o menu (a parte com fundo preto) acima do logo */
        right: -100%;
        width: 100%;
        height: auto;
        background-color: rgba(0, 0, 0, 0.95);
        transition: all 0.3s ease;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .nav ul li {
        margin: 15px 0;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 0 0 100px
    }

    .hero-content {
        padding-top: 80px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 14px;
    }
    
    .cta-button {
        padding: 8px 18px;
        font-size: 14px;
    }
    
    .hero-animation {
        max-height: 250px;
    }
    
    .macbook-container {
        max-width: 300px;
        height: 200px;
    }
    
    .macbook {
        max-width: 320px;
        height: 200px;
    }
    
    .macbook-screen {
        height: 180px;
    }
    
    .macbook-body {
        top: 180px;
    }
    
    .macbook-keyboard {
        top: 185px;
    }
    
    /* Ajustes adicionais para os tech-badges em telas muito pequenas */
    .system-content {
        margin-top: -10px; /* Movendo ainda mais para cima em telas menores */
    }
    
    .system-content h3 {
        font-size: 21px;
        margin-bottom: 3px;
    }
    
    .system-content p {
        font-size: 9px;
        margin-bottom: 3px;
    }
    
    .system-content .tech-badges {
        margin-top: 1px;
        gap: 3px;
    }
    
    .tech-badge {
        padding: 2px 6px;
        font-size: 8px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 10px 15px;
    }

    .header .container {
        flex-direction: column;
        padding: 10px 15px;
    }
    
    .logo {
        margin-bottom: 15px;
        font-size: 22px;
    }
    
    .nav {
        width: 100%;
    }
    
    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
    
    .nav ul li {
        margin: 5px 10px;
    }
    
    .nav ul li a {
        font-size: 14px;
    }
    
    .contact-btn {
        padding: 6px 12px;
        font-size: 14px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 15px;
    }
    
    /* Responsividade do rodapé para tablets */
    .footer .container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .footer-left {
        flex: 1;
        min-width: 300px;
    }
    
    .footer-right {
    display: flex;
    align-items: flex-start;
    flex-direction: column-reverse;
    width: 100%;
    }
    
    .footer-logos {
        gap: 15px;
    }
    
    .footer-logos img {
        height: 35px;
    }
    
    .footer-copyright {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 10px 0 88px;
    }
    
    .header .container {
        padding: 5px 10px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .nav ul li {
        margin: 3px 8px;
    }
    
    .nav ul li a {
        font-size: 13px;
    }
    
    .contact-btn {
        padding: 5px 10px;
        border-width: 1px;
    }
    
    /* Responsividade do rodapé */
    .footer .container {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        width: 100%;
    }
    
    .footer-left {
        align-items: flex-start; 
        margin-bottom: 30px; /* Espaçamento entre os elementos do rodapé */
        width: 100%; /* Largura total */
    }
    
    .footer-info {
        text-align: left; /* Alinhar o texto à esquerda */
        margin-bottom: 20px; /* Espaçamento entre o texto e os contatos */
    }
    
    .footer-contact {
        align-items: flex-start; /* Alinhar os elementos à esquerda */
    }
    
    .footer-right {
    display: flex;
    align-items: flex-start;
    flex-direction: column-reverse;
    width: 100%;
    }
    
    .footer-logos {
        margin-bottom: 70px; /* Espaçamento entre os logotipos e o texto "Powered" mobile */
    }
    
    .footer-logos img {
        height: 36px; /* Ajuste para o tamanho dos logotipos mobile */
    }
    
    .footer-copyright {
        flex-direction: row; /* Alinhar os elementos do rodapé em uma linha */
        flex-wrap: wrap; /* Permitir quebra de linha */
        text-align: left; /* Alinhar o texto à esquerda */
        line-height: 1.6; /* Espaçamento entre as linhas */
        font-size: 12px; /* Ajuste para o tamanho da fonte */ 
    }
}