/* Estilo geral */

html {
            scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;  /* altera o tamanho do espaçamento do site */
    padding: 0;
    background-color: #DCDCDC; /* altera a cor de fundo do site */
}


/* Estilo do Header Menu */
header {
    background-color: rgba(0, 0, 0, 0.8); /* altera a cor do menu */
    color: #fff;
    padding: 15px 20px; /* altera a largura do menu */
    position: fixed;   /* faz com que o menu fique fixo ao rolar o site */
    width: 100%;  /* enquadra o menu em 100% da pagina */
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* altera o tamanho da logo */
header .logo img {
    width: 250px;
    height: auto;
    transition: transform 0.3s ease;
    
}

header .logo img:hover { /* aumenta a logo ao passar o mouse */
    transform: scale(1.1);
}

header nav ul {   /* estilos de menu */
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
}

header nav ul li {
    margin: 0 40px;
}

a {
    text-decoration: none;
    color: inherit;
}

header nav ul li a {  
    color: #fff;
    font-weight: 700;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #f39c12;
}

/* Seção Hero e Carrossel */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carrossel-indicadores {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}
.carrossel-indicador {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
}
.carrossel-indicador.ativo {
    background-color: white;
}

.carrossel-container {  /* altera a velocidade do Carrossel */
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carrossel-item {
    min-width: 100%;
    position: relative;
}

.carrossel-item video.carrossel-video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.carrossel-texto {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
}

.carrossel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 24px;
}

.carrossel-btn.prev {
    left: 20px;
}

.carrossel-btn.next {
    right: 20px;
}

.carrossel-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
/* Seção Quem Somos */
.quem-somos {
    background-color: #ffffff; /* Cor de fundo */
    padding: 50px 20px;
    text-align: center;
}

.quem-somos-conteudo {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.quem-somos-img {
    width: 300px;
    border-radius: 10px;
    margin-right: 20px;
}

.quem-somos-texto {
    max-width: 600px;
    text-align: left;
}

.quem-somos-texto h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
}

.quem-somos-texto p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Responsividade */
@media (max-width: 768px) {
    .quem-somos-conteudo {
        flex-direction: column;
        text-align: center;
    }

    .quem-somos-img {
        margin: 0 0 20px 0;
        width: 80%;
    }

    .quem-somos-texto {
        text-align: center;
    }
}
/* Estilo do Botão Saiba Mais */
.botao-saiba-mais {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background-color: #000000; /* Cor do botão */
    color: white;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s, transform 0.2s;
}

.botao-saiba-mais:hover {
    background-color: #CE8B05; /* Cor ao passar o mouse */
    transform: scale(1.05);
}

/* Seção Serviços */
.servicos-section {
    text-align: center;
    padding: 50px 20px;
    background: #c1c6c3; /* cor de fundo de Serviços */
}

.servicos-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 70px;
    padding: 20px;
}

.service-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card img {  /* imagem de fundo de Serviços */
    width: 100%;
    height: 130px;
    object-fit: cover;
}

.service-card h3 {
    margin: 15px 0;
    font-size: 1.2rem;
    color: #333;
}

/* Rodapé */
.footer {
    background-color: #1a1a1a;
    color: #f1f1f1;
    padding: 40px 20px;
    text-align: center;
}
.validador-img {
        border: 0;
        width: 53px; /* 40% menor que 88px */
        height: 19px; /* 40% menor que 31px */
    }

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-about, .footer-links, .footer-social {
    flex: 1 1 300px;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #f1f1f1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #ffd700;
}

.social-floating {
    position: fixed;
    top: 40%;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 1em;
    z-index: 1000;
}
.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}
iframe {
            width: 100%;
            height: 250px;
            border: 0;
            margin-top: 10px;
        }

.social-icon.linkedin { background-color: #0077b5; }
.social-icon.instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.social-icon.whatsapp { background-color: #25d366; }

.social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

    
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    .footer-container {
        flex-direction: column;
    }
}
@media (max-width: 768px) {
    iframe {
        height: 200px;
    }
    /* Melhor organização das redes sociais para mobile */
    .social-floating {
        position: static;
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
    }
}