/* ==========================================
   50 TONS DE GLAMOUR - HERO SECTION CSS
   ========================================== */

.hero-section {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Imagem de fundo */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Overlay escuro */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

/* Conteúdo centralizado */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #FFFFFF;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #FFFFFF;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Balão lateral */
.hero-balloon {
    position: absolute;
    bottom: 60px;
    right: 40px;
    z-index: 4;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 25px;
    max-width: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slideInRight 1s ease-out 0.3s both;
}

.hero-balloon::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: 30px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 0px solid transparent;
    border-top: 15px solid #FFFFFF;
}

.hero-balloon p {
    font-size: 0.95rem;
    color: #6B2E3F;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========== RESPONSIVIDADE ========== */
@media (max-width: 1024px) {
    .hero-section {
        height: 600px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-balloon {
        max-width: 250px;
        padding: 20px;
        bottom: 40px;
        right: 30px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 500px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-balloon {
        position: static;
        max-width: 100%;
        margin-top: 30px;
        animation: fadeInUp 1s ease-out;
    }

    .hero-balloon::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 400px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-balloon {
        margin-top: 20px;
        padding: 15px;
    }

    .hero-balloon p {
        font-size: 0.9rem;
    }
}
