/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    
    color: #fff;
    line-height: 1.6;
}

#robbu-whatsapp-button{
    z-index: 99;
}

#robbu-whatsapp-button {
    display: flex;
    position: fixed;
    background: #4b4949;
    bottom: 25px;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    box-shadow: 2px 2px 12px rgb(0, 0, 0);
    transition: 0.4s;
    align-items: center;
    justify-content: center;
}

#robbu-whatsapp-button > .rwb-tooltip {
    position: absolute;
    bottom: 100%;
    margin-bottom: 20px;
    border-radius: 4px;
    padding: 15px;
    color: #ffffff;
    font-size: 16px;
    white-space: nowrap;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.87);
    opacity: 0;
    transition: 0.4s;
    pointer-events: none;
    text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff;
}


#robbu-whatsapp-button > .rwb-tooltip:after {
    display: block;
    content: "";
    position: absolute;
    top: 85%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 7px 0 7px;
    border-color: #fff transparent transparent transparent;
    transition: 0.4s;
}

#robbu-whatsapp-button.left {
    left: 25px;
}

#robbu-whatsapp-button.left > .rwb-tooltip {
    left: 0;
    transform: translateX(-10%);
}

#robbu-whatsapp-button.left > .rwb-tooltip:after {
    left: 23px;
}

#robbu-whatsapp-button:not(.left) {
    right: 25px;
}

#robbu-whatsapp-button:not(.left) > .rwb-tooltip {
    right: 0;
    transform: translateX(10%);
}

#robbu-whatsapp-button:not(.left) > .rwb-tooltip:after {
    right: 23px;
}

#robbu-whatsapp-button > img {
    display: block;
    width: 50px;
    height: 50px;
}

#robbu-whatsapp-button:hover {
    background: #ffffff;
    box-shadow: 3px 3px 12px rgba(14, 81, 39, 0.4);
}

#robbu-whatsapp-button:hover > .rwb-tooltip {
    opacity: 1;
    transform: translateX(0);
}

#robbu-whatsapp-button:hover > .rwb-tooltip:after {
    top: 100%;
    transition-delay: 0.4s;
}


.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Fundo de partículas */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Estilos para o menu responsivo */
header {
    background: rgb(0, 0, 0);
    opacity: 95%;
    padding: 2vh 0;
    position: sticky;
    top: 0;
    z-index: 9;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo {
    width: 80px; /* Tamanho menor da logo */
    margin-left: -2vh; /* Espaçamento à esquerda */
    margin-bottom: -4vh;
    cursor: pointer;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: center;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    padding: 0px;
    padding-left: 4vh;
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #2c8ac0;
}

@media (max-width: 768px) {
        .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    header .logo {
        width: 80px; /* Tamanho menor da logo */
        margin-left: 0px; /* Espaçamento à esquerda */
        margin-bottom: 0px;
    }

    nav {
        z-index: 2 !important;
        display: none;          
        position: absolute;
        top: 70px;
        right: 2vh;
        background: rgba(57, 60, 61, 0.9);
        padding: 30%;
        border-radius: 10px;
    }

    nav ul {
        flex-direction: column;
        

    }

    nav ul li {
        margin: 10px 0;
        align-items: center;
    }

    nav ul li a {        
        color: #fff;
        text-decoration: none;
        font-size: 24px;
        font-weight: bold;
        transition: color 0.3s ease;
    }
    

    nav.active {
        display: flex;
    }
}

/* Hero Section */
.hero {
    position: relative;
    padding: 10vh 0;
    height: 100vh;
    text-align: center;
    overflow: hidden;
    background-image: url('./Assets/bg-branco2.jpg'); /* Imagem de fundo */
    background-size: cover; /* Garante que a imagem cubra todo o elemento */
    background-position: center; /* Centraliza a imagem */
    background-repeat: no-repeat; /* Evita repetição da imagem */
    z-index: -1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.904); /* Preto com 50% de opacidade */
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    padding-top: 0%;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 0 5px #ffffff, 0 0 20px #ffffff;
    position: relative !important; /* Garante que o título fique acima do overlay */
    z-index: 2 !important; /* Título acima do overlay */
}

.hero-subtitle {
    font-size: 30px;
    margin-bottom: 80px;
    color: #ffffffbe;
    text-shadow: 0 0 2px #000000be, 0 0 15px #000000be;
    position: relative; /* Garante que o subtítulo fique acima do overlay */
    z-index: 2 !important; /* Subtítulo acima do overlay */
}

#logohero {
    width: 35%;    
    position: relative;
    z-index: 2 !important;
}

.cta-button {
    background: #2c8ac0; /* Roxo mais suave */
    color: #fff;
    padding: 20px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: background 1s ease, transform 1s ease; /* Animação suave */
    box-shadow: 0 0 5px #2c8ac0, 0 0 20px #2c8ac0;
    position: relative; /* Garante que o botão fique acima do overlay */
    z-index: 2; /* Botão acima do overlay */
}

.cta-button:hover {
    background: #1527c5c2; /* mais escuro */
    transform: scale(1.1);
    box-shadow: 0 0 5px #1527c5c2, 0 0 20px #1527c5c2;
}


/* Services Section */
.services {
    padding: 80px 0;
    background: #111;    
}

@media screen and (min-width: 1024px) {
    .services {
        padding: 10% 0;
        background-image: url('./Assets/backgroundcards2.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;         
        height: 100vh;   
    }
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff; /* Azul clarinho */
    text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    background-image: url('./Assets/bg-CEO2.jpg'); /* Imagem de fundo */
    background-size: cover; /* Garante que a imagem cubra todo o elemento */
    background-position: center; /* Centraliza a imagem */
    background-repeat: no-repeat; /* Evita repetição da imagem */
    background-color:  rgba(0, 0, 0, 0.479); /* Fundo preto com 50% de transparência */
    background-blend-mode: multiply; /* Mistura a cor de fundo com a imagem */       
    padding: 80px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media screen and (min-width: 1024px) {
    .service-card {
    background-image: url('./Assets/bg-CEO2.jpg'); /* Imagem de fundo */
    background-size: cover; /* Garante que a imagem cubra todo o elemento */
    background-position: center; /* Centraliza a imagem */
    background-repeat: no-repeat; /* Evita repetição da imagem */
    background-color:  rgba(0, 0, 0, 0.479); /* Fundo preto com 50% de transparência */
    background-blend-mode: multiply; /* Mistura a cor de fundo com a imagem */
    height: 50vh;
    border-radius: 10px;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;        
    }   /* Pseudo-elemento para o fundo desfocado */
}


.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(135, 206, 235, 0.5); /* Azul clarinho */
}

.card-icon img {
    width: 60%;
    height: 50%;
    fill: none;
    stroke: #87ceeb; /* Azul clarinho */
    stroke-width: 2;
    margin: 5px;    
}

.service-features {
    list-style: none;
    margin-top: 15px;
    text-align: center;
}

.service-features li {
    margin-bottom: 10px;
    color: #ccc;
    text-shadow: 0 0 5px #ccc, 0 0 10px #ccc;
}

.service-card p {
    margin-bottom: 10px;
    font-size: 16px;
    color: #ffffff;
    text-shadow: 0 0 2px #ffffff, 0 0 5px #ffffff;
}

.service-card h3 {    
    font-size: 18px;
    color: #ff0000;
    text-shadow: 0 0 2px #ff0000, 0 0 5px #ff0000;
}
@media screen and (max-width: 768px) {
    .services {
        padding: 10% 0;
        background-image: url('./Assets/backgroundcards2.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;    
        height: 100%;   
    }
    .service-card p {
        font-size: 20px !important;
    }
}
.service-card {
    animation: float 3s ease-in-out infinite, pulse-glow 2s ease-in-out infinite;
}

.service-card:hover {
    transform: scale(1.05) rotateY(15deg) rotateX(10deg);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

@keyframes neon-pulse {
    0%, 100% {
        box-shadow: 0 0 5px rgba(135, 206, 235, 0.5), 0 0 10px rgba(135, 206, 235, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(135, 206, 235, 0.8), 0 0 30px rgba(135, 206, 235, 0.8);
    }
}

.service-card {
    animation: neon-pulse 2s ease-in-out infinite;
}

/* SOBRE */

/* Media Query para dispositivos móveis */
@media screen and (max-width: 768px) {
    .about-content {
        flex-direction: column; /* Empilha os elementos verticalmente */
        text-align: center; /* Centraliza o texto */
    }

    .about-text, .about-image {
        text-align: center; /* Centraliza o texto e a imagem */
    }

    .about-image {
        order: -1; /* Coloca a imagem antes do texto */       
    }
}



@media screen and (min-width: 1024px) {
    .about{
        height: 100%;
    }
}
.about {
    padding: 200px 0;    
    text-align: center;
    background-image: url('./Assets/bg-CEO2.jpg'); /* Imagem de fundo */
    background-size: cover; /* Garante que a imagem cubra todo o elemento */
    background-position: center; /* Centraliza a imagem */
    background-repeat: no-repeat; /* Evita repetição da imagem */
    background-color:  rgba(0, 0, 0, 0.479); /* Fundo preto com 50% de transparência */
    background-blend-mode: multiply; /* Mistura a cor de fundo com a imagem */
    z-index: 2;
    position: relative;
}

.section-title-about {
    font-family: 'Orbitron', sans-serif;
    font-size: 56px;
    text-align: center;
    margin-bottom: 40px;
    color: #dde0e6; /* Azul clarinho */
    text-shadow: 0 0 30px #dde0e6, 0 0 25px #dde0e6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    display: flex; /* Ativa o Flexbox */
    align-items: center; /* Centraliza verticalmente */
    justify-content: space-between; /* Distribui o espaço entre os elementos */
    gap: 40px; /* Espaçamento entre o texto e a imagem */
    margin-top: 40px; /* Espaçamento acima do conteúdo */
}

.about-text {
    flex: 1; /* Ocupa metade do espaço disponível */
    text-align: justify; /* Alinha o texto à esquerda */
    color: #dde0e6; /* Azul clarinho */
    font-size: 3vh;
    text-shadow: 0 0 15px #dde0e6, 0 0 25px #dde0e6;
}

.about-image {
    flex: 1; /* Ocupa metade do espaço disponível */    
}

.about-image img {
    max-width: 80%; /* Garante que a imagem não ultrapasse o container */
    height: auto;
    width: auto;
    border-radius: 80px;
    padding-bottom: 10%;
    margin-left: -40%;       
    z-index: 9;
}

@media screen and (max-width: 768px) {
    .about-image img {
        max-width: 80%;
        height: auto;
        border-radius: 55px;
        margin-left: 0% !important;
    }
    .about-text {
        flex: 1; /* Ocupa metade do espaço disponível */
        text-align: justify; /* Alinha o texto à esquerda */
        color: #dde0e6; /* Azul clarinho */
        font-size: 2vh;
        text-shadow: 0 0 15px #dde0e6, 0 0 25px #dde0e6;
    }
    
    
}

/* Contact Section */
.contact {
    padding: 25vh 0;
    text-align: center;
    height: 100%;
    background-image: url('./Assets/bg-branco2.jpg'); /* Imagem de fundo */
    background-size: cover; /* Garante que a imagem cubra todo o elemento */
    background-position: center; /* Centraliza a imagem */
    background-repeat: no-repeat; /* Evita repetição da imagem */
    background-color: rgba(0, 0, 0, 0.616); /* Fundo preto com 50% de transparência */
    background-blend-mode: multiply; /* Mistura a cor de fundo com a imagem */
}

.section-title-contact{
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff; /* Azul clarinho */
    text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff;
    z-index: 2;
    position: relative;

}
.contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative; /* Garante que fique acima do overlay */
    z-index: 2; /* acima do overlay */
}

.contact form input, .contact form textarea {
    padding: 10px;
    border: 1px solid #000000; /* Roxo mais suave */
    border-radius: 5px;
    background: #00000065;
    color: #ffffff;
}

.contact form textarea {
    resize: vertical; /* Permite redimensionar verticalmente */
    min-height: 150px;
}

.contact form button {
    background: #000000; /* Roxo mais suave */
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact form button:hover {
    background: #5a5a5a; /* Roxo mais escuro */
}

/* Redes Sociais */
.social-links {
    display: flex;
    justify-content: center; /* Centraliza as imagens horizontalmente */
    gap: 100px; /* Espaçamento entre as imagens */
    margin-top: 30px; /* Espaçamento acima das redes sociais */
    position: relative; /* Garante que o botão fique acima do overlay */
    z-index: 2; /* Botão acima do overlay */
    
}

.social-links img {
    width: 80px; /* Tamanho das imagens */
    height: auto;    
    transition: transform 0.3s ease; /* Efeito de hover */
    
}

.social-links img:hover {
    transform: scale(2); /* Aumenta o tamanho da imagem ao passar o mouse */
}
/* Footer */
footer {
    background: #111;
    padding: 20px 0;
    text-align: center;
    color: #ccc;
}