/* site.css */

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 10;
}

.hero {
    position: relative;
    width: 100%;
    height: auto;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*color: white;*/
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.plan-section {
    padding: 4rem 1rem;
    background-color: #fff;
}

.plan-card {
    border-radius: 1rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: transform 0.3s ease;
}

    .plan-card:hover {
        transform: translateY(-5px);
    }

.btn-primary {
    background-color: #4A6CFA;
    border: none;
}

    .btn-primary:hover {
        background-color: #3a58c5;
    }

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease-in-out;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-light:hover {
    background-color: #f8f9fa;
    color: #007bff;
}

/* carousel caption positions */
.carousel-caption.center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: auto;
    right: auto;
    text-align: center;
}

.carousel-caption.top-left {
    top: 10%;
    left: 5%;
    bottom: auto;
    right: auto;
    text-align: left;
}

.carousel-caption.top-right {
    top: 10%;
    right: 5%;
    bottom: auto;
    left: auto;
    text-align: right;
}

.carousel-caption.bottom-left {
    bottom: 10%;
    left: 5%;
    top: auto;
    right: auto;
    text-align: left;
}

.carousel-caption.bottom-right {
    bottom: 10%;
    right: 5%;
    top: auto;
    left: auto;
    text-align: right;
}

.carousel-caption.left-center {
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    bottom: auto;
    right: auto;
    text-align: left;
}

.carousel-caption.right-center {
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    bottom: auto;
    left: auto;
    text-align: right;
}

/* Responsividade para telas pequenas */
@media (max-width: 768px) {
    .carousel-caption {
        max-width: 90%;
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .carousel-caption {
        max-width: 100%;
        padding: 0.25rem;
    }
}
