/* Reset and General Styles */
body {
    font-family: "Open Sans", sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* Custom Effects */
.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hover-zoom {
    transition: transform 0.3s ease;
}

.hover-zoom:hover {
    transform: scale(1.05);
}

.thumb-resort {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.extra-activity-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.calc-btn {
    width: 40px;
}

/* Accordion Custom */
.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #009269 ;
    font-weight: bold;
}

.table-primary {
    --bs-table-color: #FFF;
    --bs-table-bg: #009269;
}

footer.bg-dark.text-white.py-5 {
    padding-top: 5rem !important;
    padding-bottom: 4rem !important;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.video-background iframe {
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: -1;
}

.hero-content {
    z-index: 1;
    padding: 0 20px;
    max-width: 800px;
}

.hero-content h1 {
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero-content h2, .hero-content h3 {
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

/* SCROLL INDICATOR */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    opacity: 0.3;
}

.mouse-scroll {
    width: 30px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    transition: transform 0.3s ease;
}

.mouse-scroll:hover {
    transform: scale(1.1);
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    margin-top: 8px;
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    30% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(15px);
    }
}

.marle {
    padding-left: 40px;
}

.marri {
    padding-right: 40px;
}

.text-primary {
    color: #505050 !important; 
}

.bg-primary {
    background-color: #009269 !important; 
}

.bg-light {
    background-color: #eaeaea !important; 
}

h5.card-title {
    color: #009269 !important;
}

.text-muted {
    color: #009269 !important;
}

strong {
    color: #444444 !important;
}

.btn-primary {
    --bs-btn-color: #fff !important;
    --bs-btn-bg: #009269 !important;
    --bs-btn-border-color: #009269 !important;
    --bs-btn-hover-color: #fff !important;
    --bs-btn-hover-bg: #007c59 !important;
    --bs-btn-hover-border-color: #007c59 !important;
    --bs-btn-focus-shadow-rgb: 49,132,253;
    --bs-btn-active-color: #fff !important;
    --bs-btn-active-bg: #007c59 !important;
    --bs-btn-active-border-color: #007c59 !important;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125) !important;
    --bs-btn-disabled-color: #fff !important;
    --bs-btn-disabled-bg: #009269 !important;
    --bs-btn-disabled-border-color: #009269 !important;
}

.btn-outline-primary {
    --bs-btn-color: #009269 !important;
    --bs-btn-border-color: #009269 !important;
    --bs-btn-hover-color: #fff !important;
    --bs-btn-hover-bg: #009269 !important;
    --bs-btn-hover-border-color: #009269 !important;
    --bs-btn-focus-shadow-rgb: 13,110,253 !important;
    --bs-btn-active-color: #fff !important;
    --bs-btn-active-bg: #009269 !important;
    --bs-btn-active-border-color: #009269 !important;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125) !important;
    --bs-btn-disabled-color: #009269 !important;
    --bs-btn-disabled-bg: transparent !important;
    --bs-btn-disabled-border-color: #009269 !important;
    --bs-gradient: none;
}

.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    color: #FFF !important;
    background-color: #009269 !important;
    border-color: #009269 !important;
}

.text-warning {
    color: #d0ffd1 !important;
}

.btn-group-sm>.btn, .btn-sm {
    --bs-btn-padding-y: 0.65rem;
    --bs-btn-padding-x: 0.9rem;
    --bs-btn-font-size: 0.875rem;
    --bs-btn-border-radius: var(--bs-border-radius-sm);
}

section#section-6 {
    background: #005e44;
}

label.form-check-label.ms-3 {
    font-size: 0.8rem;
}

.form-check-input:checked {
    background-color: #009269;
    border-color: #009269;
}

.form-check .form-check-input {
    float: left;
    margin-left: -1em;
    margin-top: 1px;
}

.card.borderfi {
    border: 2px solid #f0f0f0;
    background: #f6f6f6;
    /* box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.10); */
}

.btn:hover {
    color: var(--bs-btn-hover-color);
    background-color: #005e44;
    border-color: var(--bs-btn-hover-border-color);
}

.bg-secondary {
    --bs-bg-opacity: 1;
    background-color: #959595 !important;
}

.border-secondary {
    --bs-border-opacity: 1;
    border-color: #959595 !important;
}

.btn-danger {
    background-color:#000;
    border-color: #000;
}

.btn-danger:hover {
    background-color:#dc3545;
    border-color: #dc3545;
}

.card-header {
    border-bottom: none;
}

h5.text-primary.mb-2 {
    color: #fff !important;
    font-size: 1rem;
    text-transform: uppercase;
    padding-bottom: 2px;
}

a.assina {
    color: #009269 !important;
    text-decoration: none;
}

a.assina:hover {
    color: #fff !important;
    text-decoration: none;
}

/* Seção 4 - Atividades */
#section-4 {
    background-color: #1d1d1d;
}

.activity-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    height: 100%;
}

.activity-item i {
    color: #009269;
}

/* Calculadora de Investimento */
.calc-input-group {
    width: 130px;
}

/* Rodapé */
.footer-logo {
    max-height: 100px;
}

.bg-dark {
    --bs-bg-opacity: 1;
    background-color: rgb(33 41 37) !important;
}

/* = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

@media (max-width: 768px) {
    .scroll-indicator {
        display: none;
    }

    .marle, .marri {
        padding: 0 20px;
    }

    .activity-item {
        padding: 10px;
    }

    .h5, h5 {
        font-size: 1rem;
    }

    /* Ajuste para a calculadora no mobile */
    .calc-input-group {
        width: 140px !important;
        flex-wrap: nowrap !important;
    }

    .card-body.p-4.p-md-5 {
    padding: 30px 10px !important;
    }

/* Estilos para o Checkbox no Mobile */
.form-check {
    padding-left: 0; /* Remove padding padrão do bootstrap para usar flex */
}

.form-check-input {
    margin-top: 0.3rem; /* Alinha verticalmente com a primeira linha do texto */
}


    .form-check-label {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    button.btn.btn-sm.btn-danger.btn-remove-acompanhante {
    padding: 5px;
}

.table-responsive {
    font-size: 0.8rem;
}

}



