/* Reset básico */

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

body {
    font-family: 'Segoe UI', sans-serif;
    color: #fff;
    background-color: #f5f5f5;
}


/* Hero Section */

.hero {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Vídeo de fundo */

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}


/* Overlay escura */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, rgba(255, 0, 0, 0), rgb(0, 17, 255));
}


/* Conteúdo centralizado */

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    width: 80%;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


/* Botões */

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.btn a {
    text-decoration: none;
    color: #ffffff;
}

.btn.primary {
    background-color: #0078d4;
    color: #fff;
}

.btn.secondary {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn:hover {
    background-color: #005fa3;
}


/* Seção futura */

.next-section {
    height: 100vh;
    background-color: #111;
}


/* Seção do CEO */

.ceo-message {
    background-color: #007bff;
    color: #ffffff;
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
}

.ceo-message_ {
    background-color: #f5f5f5;
    color: #111;
    display: flex;
    justify-content: center;
    padding-bottom: 2rem;
}

.ceo-container {
    max-width: 800px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}


/* Imagem arredondada */

.ceo-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


/* Texto em itálico */

.ceo-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
}


/* Botão reaproveitado */

.ceo-container .btn.primary {
    background-color: #ffffff;
    color: #007bff;
}

.ceo-container .btn.primary a {
    text-decoration: none;
    color: #007bff;
}

.ceo-container .btn.primary:hover {
    background-color: #d8d8d8;
}

.ceo-container .btn.secondary {
    background-color: #007bff;
    color: #ffffff;
}

.ceo-container .btn.secondary:hover {
    background-color: #0058b6;
}


/* Seção de serviços */

.services {
    background-color: #f5f5f5;
    color: #000000;
    padding: 1rem 1rem;
    display: flex;
    justify-content: center;
}

.services-container {
    max-width: 1280px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    max-width: 80%;
    margin-bottom: 1rem;
}


/* Seção de parceiros */

.partners {
    background-color: #f5f5f5;
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
}

.partners-container {
    max-width: 1280px;
    width: 100%;
    text-align: center;
}

.partners-container h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #111;
}


/* Grid de logos */

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.partner-logo {
    max-height: 100px;
    width: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partners-grid img {
    max-width: 100px;
    filter: grayscale(100%);
    transition: .5s ease-in;
    cursor: pointer;
}

.partners-grid img:hover {
    filter: grayscale(0%);
}

.partner-logo:hover {
    filter: grayscale(0%);
}


/* Responsividade */

@media (max-width: 1024px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-container {
        grid-template-columns: 1fr;
    }
}