/* styles.css */

/* Reset e Configurações Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background-color: #2A3A5A;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    height: 50px;
}

header .btn-cta {
    background-color: #7B4B9E;
    color: #FFFFFF;
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

header .btn-cta:hover {
    background-color: #4B9EC7;
}

/* Hero Section com Vídeo */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero .container {
    color: #FFFFFF;
    position: relative;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    color: #F5F5F5;
    margin-bottom: 2rem;
}

.hero .btn-hero {
    background-color: #7B4B9E;
    color: #FFFFFF;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.hero .btn-hero:hover {
    background-color: #4B9EC7;
}

/* Seções Gerais */
.section {
    padding: 5rem 0;
}

.section h2 {
    color: #7B4B9E;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.section p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Quem Somos */
#quem-somos {
    background-color: #F5F5F5;
}

.values {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-item {
    text-align: center;
    max-width: 300px;
}

.value-item h3 {
    color: #4B9EC7;
    margin-bottom: 1rem;
}

/* Soluções */
#solucoes {
    background-color: #FFFFFF;
}

.solutions {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
}

.solution-item {
    background-color: #F5F5F5;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    max-width: 300px;
    transition: transform 0.3s;
}

.solution-item:hover {
    transform: translateY(-5px);
}

.solution-item h3 {
    color: #7B4B9E;
    margin-bottom: 1rem;
}

/* Softwares */
#softwares {
    background-color: #F5F5F5;
}

.softwares {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.software-item {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    max-width: 300px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.software-item:hover {
    transform: translateY(-5px);
}

.software-item .software-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.software-item h3 {
    color: #7B4B9E;
    margin-bottom: 0.5rem;
}

.software-item p {
    margin-bottom: 1rem;
}

.software-item .btn-software {
    display: inline-block;
    background-color: #7B4B9E;
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.software-item .btn-software:hover {
    background-color: #4B9EC7;
}

.softwares {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.software-item {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    max-width: 300px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.software-item:hover {
    transform: translateY(-5px);
}

.software-item h3 {
    color: #7B4B9E;
    margin-bottom: 1rem;
}

.software-item .btn-software {
    display: inline-block;
    margin-top: 1rem;
    background-color: #7B4B9E;
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.software-item .btn-software:hover {
    background-color: #4B9EC7;
}

/* Contato */
#contato {
    background-color: #FFFFFF;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form .btn-form {
    background-color: #7B4B9E;
    color: #FFFFFF;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form .btn-form:hover {
    background-color: #4B9EC7;
}

.contact-info {
    text-align: center;
    margin-top: 2rem;
}

.contact-info a {
    color: #4B9EC7;
    text-decoration: none;
}

.contact-info a:hover {
    color: #7B4B9E;
}

/* Footer */
footer {
    background-color: #2A3A5A;
    color: #FFFFFF;
    padding: 3rem 0;
}

footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

footer .footer-logo {
    height: 40px;
}

footer .footer-links a {
    color: #4B9EC7;
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s;
}

footer .footer-links a:hover {
    color: #7B4B9E;
}

footer .footer-contact p {
    margin: 0.5rem 0;
}

footer .footer-copy {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #F5F5F5;
}

/* Menu Hamburguer */
.nav-menu {
    display: flex;
    align-items: center;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #FFFFFF;
    transition: all 0.3s;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-menu ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu ul li a:hover {
    color: #7B4B9E;
}

/* Responsividade */
@media (max-width: 768px) {
    header .container {
        flex-direction: row;
        justify-content: space-between;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #2A3A5A;
        padding: 1rem 0;
    }

    .nav-menu ul.active {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section h2 {
        font-size: 2rem;
    }

    footer .footer-content {
        flex-direction: column;
        text-align: center;
    }

    /* CAPTCHA */
.captcha {
    margin-top: 1rem;
    text-align: center;
}

.captcha label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333333;
}

.captcha input {
    width: 100%;
    max-width: 200px;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    text-align: center;
}
}