:root {
    --paradiso-blue: #005A8D; /* Azul escuro do site */
    --paradiso-orange: #F39C12; /* Laranja para CTAs */
    --paradiso-sand: #FBF9F6;   /* Tom de areia/fundo claro */
    --paradiso-text: #333333;   /* Cor de texto principal */
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--paradiso-text);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--paradiso-blue);
}

.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-video-wrapper 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%);
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}
.hero-section .container {
    position: relative;
    z-index: 3;
}

.btn-paradiso {
    background-color: var(--paradiso-orange);
    color: white;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-paradiso:hover {
    background-color: #e68a00;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.section-padding {
    padding: 80px 0;
}

.bg-sand {
    background-color: var(--paradiso-sand);
}

.feature-icon {
    font-size: 2rem;
    color: var(--paradiso-orange);
    font-weight: normal; /* Garante que o ícone outline não fique em negrito */
}

.guideline-card {
    border: 1px solid #eee;
    border-radius: 15px;
    height: 100%;
}

.carousel-item img {
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
}

.floating-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: var(--paradiso-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.1);
    color: white;
}

img.influencer{
    width: 600px!important;
}

@media (max-width:425px) {    
    img.influencer{
        width: 80vw!important;
    }
    .beach-club{
        text-align: center;
    }
    
}
    