* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body { background-color: lightblue; color: #333; }

/* Carrossel */
.carousel {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
}

.carousel-inner {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease;
}

.carousel-item {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Responsivo */
@media (max-width: 768px) {
    .carousel {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .carousel {
        height: 200px;
    }
}

/* Container Geral */
.container {
    max-width: 1100px;
    margin: 20px auto;
    padding: 0 20px;
}

.img-full {
    width: 100%;
    border-radius: 10px;
    margin: 30px 0;
}

/* Cartões Azuis */
.card-blue {
    background: linear-gradient(to bottom, #007bff, #001f3f);
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.btn-red {
    background: linear-gradient(to right, #ff416c, #ff4b2b);
    border: none;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 15px;
    font-weight: bold;
}
/* Grid de 7 Cartões */
.section-title { text-align: center; margin-bottom: 30px; }

.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.card-detail {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.card-detail hr { margin: 15px 0; border: 0.5px solid #eee; }
.card-detail h1 { font-size: 1.5rem; }
.card-detail h2 { font-size: 1.1rem; color: #666; }
.card-detail h3 { font-size: 0.9rem; margin-bottom: 15px; }

.btn-white {
    background: white;
    color: black;
    border: 1px solid blue;
    padding: 10px 20px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-white:hover { color: red; border-color: red; }

/* Galeria Inferior */
.gallery-three {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.gallery-three img {
    width: 33.3%;
    border-radius: 8px;
    transition: transform 0.3s;
}

.gallery-three img:hover { transform: scale(1.05); }

/* Rodapé */
footer {
    background-color: #001f3f;
    padding: 40px;
    text-align: center;
}

.social-icons a {
    color: white;
    font-size: 2rem;
    margin: 0 15px;
    transition: 0.3s;
}

.links-botoes{
    color: black;
	text-decoration: none;
}


.social-icons a:hover { color: #007bff; }