* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    color: #4A4A4A;
    background: #FFFFFF;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.header {
    background: #0A2A43;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    color: #fff;
    font-size: 22px;
    font-weight: bold;
}

.menu {
    list-style: none;
    display: flex;
    gap: 25px;
}

.menu a {
    color: #fff;
    text-decoration: none;
}

/* HERO */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(120deg, #0A2A43, #0D6EFD);
    color: white;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-img img {
    width: 100%;
    max-width: 350px;
}

/* BUTTON */
.btn {
    background: #0D6EFD;
    color: white;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
}

.btn.white {
    background: #fff;
    color: #0A2A43;
}

/* SECTIONS */
.section {
    padding: 80px 0;
}

.section.light {
    background: #E9F2FB;
}

/* Fundo gradiente específico para a seção 'Destaques' */
.section-destaques {
    background: linear-gradient(180deg, rgba(13,110,253,0.06), rgba(10,42,67,0.03));
}

.section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #0A2A43;
}

/* CARDS */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.card h3 {
    margin-bottom: 10px;
    color: #0D6EFD;
}

/* Ajuste global de imagens dentro das cards */
.cards .card img {
    width: 100%;
    max-width: 258px; /* largura máxima (aumentada 20%) */
    height: auto;     /* mantém proporção e evita corte */
    max-height: 216px; /* limita altura sem distorcer (aumentada 20%) */
    object-fit: contain; /* mostra a imagem inteira */
    object-position: center; /* centraliza imagem dentro da caixa */
    display: block;
    margin: 8px auto 12px;
    border-radius: 6px;
}


/* CTA */
.cta {
    background: #0A2A43;
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta h2 {
    margin-bottom: 10px;
}

/* FOOTER */
.footer {
    background: #061C2E;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}
/* MENU MOBILE */
.menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

/* RESPONSIVO */
@media (max-width: 900px) {

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }


    
    .hero-img {
        margin-top: 40px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .menu {
        position: absolute;
        top: 70px;
        right: 0;
        background: #0A2A43;
        flex-direction: column;
        width: 100%;
        display: none;
        padding: 20px 0;
    }

    .menu li {
        text-align: center;
        padding: 15px 0;
    }

    .menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

@media (max-width: 600px) {

    .hero {
        padding: 120px 0 60px;
    }

    .section {
        padding: 60px 0;
    }

    .hero p {
        font-size: 16px;
    }

    .btn {
        padding: 12px 24px;
    }
}
@media (max-width: 600px) {
    .cards .card img {
        max-width: 100%;
        height: auto;
    }
}
/* LANDING PAGE AJUSTES */
.header .btn {
    background: #0D6EFD;
    padding: 10px 24px;
}

.hero-text {
    max-width: 520px;
}

.section .card p {
    margin-bottom: 10px;
}
.menu li:last-child a {
    background: #0D6EFD;
    padding: 8px 16px;
    border-radius: 4px;
}

/* CARROSSEL ESTILO CONTROL iD (VISÍVEL E CENTRALIZADO) */
.controlid-carousel {
    background: linear-gradient(180deg, #050b12, #0a1e33);
    height: 100vh; /* força área visível */
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.carousel-container {
    width: 100%;
    max-width: 1100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

/* SLIDE */
.carousel-slide {
    width: 960px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* CENTRO REAL */
    text-align: center;
}

/* IMAGEM */
.carousel-slide img {
    max-width: 100%;
    max-height: 800px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: transform 0.6s ease, opacity 0.4s ease;
}

.carousel-slide img:hover {
    transform: scale(1.05);
}

.carousel-slide h3 {
    font-size: 22px;
    color: #0D6EFD;
}

/* BOTÕES */
.carousel-btn {
    background: none;
    border: 2px solid #0D6EFD;
    color: #0D6EFD;
    font-size: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: #0D6EFD;
    color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
    .controlid-carousel {
        height: auto;
        padding: 80px 0;
    }

    .carousel-slide {
        width: 240px;
        height: 360px;
    }

    .carousel-slide img {
        max-height: 280px;
    }
}
