/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
    background: #F6F8FF;
    color: #333;
    line-height: 1.6;
}

/* Container */
.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* Textos */
h1 {
    font-weight: 900;
    line-height: 1.2;
    font-size: 3rem;
    color: #333;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #13B8BF;
}

/* Estilo para Seções de 2 Colunas */
.hero-grid, .about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 colunas por padrão */
    gap: 20px;
    align-items: center;
}

.about-text p{
    color: #fff;
}



/* Ajustes para Imagens e Texto */
.hero-text, .about-text {
    max-width: 500px;
    /* Limita a largura do texto */
}

.hero-image img, .about-image img {
    width: 100%;
    max-width: 800px;
    /* Limita a largura das imagens */
    border-radius: 10px;
}

/* Navegação */
.navigation {
    position: fixed;
    width: 100%;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
}

.navigation.scrolled {
    background: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navigation .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #13B8BF;

}

.logo {
    width: 100%;
    max-width: 500px;
    min-width: 350px;
}

.section2 {
    width: 100%;

    min-width: 350px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #13B8BF;
}

/* Botão de Contato */
.cta-nav {
    background: #13B8BF;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.cta-nav:hover {
    background: #0A8990;
}

/* Ícone de Menu (Mobile) */
.hamburger-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

/* Hero Section */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 50px 0;
    background: #F6F8FF;
}

.hero-text {
    flex: 1 1 50%;
    max-width: 500px;
    margin-bottom: 20px;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
}

/* Funcionalidades e Cards */
.features {
    background: #041f20;
    padding: 50px 0;
}

.feature-grid, .benefit-grid, .target-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 colunas por padrão */
    gap: 20px;
    justify-items: center;
    /* Centraliza os itens */
}

.feature-card, .benefit-card, .target-card {
    background: #fcfcfc;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    /* Ocupe o espaço disponível */
    max-width: 400px;
    /* Limite para evitar cards muito largos */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.feature-card:hover, .benefit-card:hover, .target-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.feature-card i, .benefit-card i, .target-card i {
    font-size: 2rem;
    color: #13B8BF;
    margin-bottom: 10px;
}

.feature-card h3, .benefit-card h3, .target-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.feature-card p, .benefit-card p, .target-card p {
    font-size: 1rem;
    color: #555;
}


/* Sobre */
.about-section {
    padding: 50px 0;
    background: #041f20;
}

.hero-image2 img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
}

/* Contato */
.contact {
    background-color: #041f20;
    padding: 50px 0;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.carousel-section {
    padding: 30px 0;
    background-color: #041f20;
    text-align: center;
    perspective: 100px;
    /* Adiciona a sensação de profundidade */
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1080px;
    height: 600px;
    /* Ajuste para o tamanho do carrossel */
    margin: 0 auto;
    overflow: hidden;

}

.carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(0deg);
    /* Inicializa sem rotação */
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    position: absolute;
    width: 80%;
    /* Proporção ajustável */
    height: 100%;
    transform-origin: center;
    transform: translateZ(-500px);
    /* Posiciona atrás inicialmente */
    opacity: 0;
    /* Esconde as não visíveis */
    transition: transform 0.5s ease-in-out, opacity 0.2s ease-in-out;

}

.carousel-slide img {
    width: 100%;
    /* Ajusta automaticamente a largura */
    object-fit: contain;
    /* Garante que a imagem inteira seja visível */
    border-radius: 20px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}

.carousel-slide.active {
    transform: translateZ(0);
    /* Coloca no centro */
    opacity: 1;
    /* Torna visível */
    z-index: 100;
}

.carousel-slide.left {
    transform: rotateY(-45deg) translateZ(-250px);
    opacity: 0.2;
    /* Transparência para profundidade */
    z-index: 2;
}

.carousel-slide.right {
    transform: rotateY(45deg) translateZ(-250px);
    opacity: 0.2;
    /* Transparência para profundidade */
    z-index: 2;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    padding: 15%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.carousel-controls button {
    border: none;
    color: #13B8BF;
    background-color: #041f20;
    font-size: 1.5rem;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s, transform 0.2s;
}

.carousel-controls button:hover {
    background-color: #041f20;
    transform: scale(1.1);
}


/* Beneficios*/

.benefits {
    margin: 50px 0;
}


/* Redes Sociais */
.socials ul {
    list-style: none;
    padding: 0;
}

.socials p{
    color: #fff;
}

.socials ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.socials ul li a:hover {
    color: #13B8BF;
}

/* Formulário */
.form input, .form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form button {
    padding: 10px 20px;
    background: #13B8BF;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form button:hover {
    background: #0A8990;
}

/* Rodapé */
footer {
    background: #041f20;
    text-align: center;
    padding: 20px 0;
    color: #ffffff;
}

.centralizar-imagem {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.centralizar-imagem img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

/* Responsividade */
@media (max-width: 980px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background: #ffffff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        gap: 15px;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger-menu {
        display: block;
    }

    .hero {
        flex-direction: column;
        text-align: center;

    }

    .hero-text {
        margin-bottom: 20px;
    }

    .feature-grid, .benefit-grid, .target-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid, .about-grid {
        grid-template-columns: 1fr;
        /* 1 coluna em dispositivos móveis */
        text-align: center;
        /* Centraliza conteúdo */
    }

    .hero-text, .about-text {
        margin: 0 auto;
        /* Centraliza o texto */
    }

    .hero-image img, .about-image img {
        margin: 0 auto;
        display: none;
        /* Centraliza as imagens */
    }

    .centralizar-imagem {
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        display: none;
    }

    .centralizar-imagem img {
        max-width: 100%;
        max-height: 100%;
        display: none;
    }

    .carousel-section {
        display: none;
    }


}