/* =========================
   CONFIGURAÇÃO GLOBAL
========================= */
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f8f9fa;
}

.section-title {
    font-weight: 700;
    margin-bottom: 30px;
}

.hero {
    background: linear-gradient(to right, #0d6efd, #0a58ca);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: bold;
}

.hero p {
    font-size: 1.2rem;
    margin-top: 15px;
}

/* =========================
   CARDS
========================= */
.card {
    border: none;
    border-radius: 15px;
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* =========================
   FORMULÁRIO
========================= */
.form-control {
    border-radius: 10px;
    padding: 12px;
}

.btn-custom {
    background-color: #0d6efd;
    color: white;
    border-radius: 30px;
    padding: 10px 25px;
}

.btn-custom:hover {
    background-color: #0a58ca;
}

/* =========================
   WHATSAPP
========================= */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-size: 28px;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 999;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 768px) {
    .hero {
        padding: 50px 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }
}

.hero {
    background: linear-gradient(135deg, #0d6efd, #001f3f);
    padding: 90px 0;
}

.hero .btn {
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 500;
}

.section-title {
    font-weight: 700;
}

.carousel-img {
    height: 65vh;
    object-fit: cover;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.55);
    padding: 20px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .carousel-img {
        height: 40vh;
    }
}






/*body {
    font-family: Arial, sans-serif;
}

.carousel-item img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
}

/* Ajuste para tablets */
/*@media (max-width: 992px) {
    .carousel-item img {
        height: 50vh;
    }
}

/* Ajuste para celulares */
/*@media (max-width: 576px) {
    .carousel-item img {
        height: 35vh;
        object-fit: cover;
    }
}


/*.carousel img {
    height: 500px;
    object-fit: cover;
}*/

/*.card:hover {
    transform: scale(1.05);
    transition: 0.3s;
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-size: 28px;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
*/