/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Variáveis CSS baseadas nas cores da imagem */
:root {
    --ametista-roxo-medio: #9B59B6;
    --lavanda-roxa: #B19CD9;
    --ametista-clara: #D8BFD8;
    --rosa-algodao-doce: #F8BBD9;
    --rosa-perola: #FFC0CB;
    --branco: #FFFFFF;
    --branco-off: #F8F8FF;
    
    /* Gradientes */
    --gradiente-roxo: linear-gradient(135deg, #9B59B6 0%, #B19CD9 100%);
    --gradiente-rosa: linear-gradient(135deg, #F8BBD9 0%, #FFC0CB 100%);
    --gradiente-completo: linear-gradient(135deg, #9B59B6 0%, #B19CD9 50%, #F8BBD9 100%);
    
    /* Sombras */
    --sombra-suave: 0 10px 30px rgba(155, 89, 182, 0.2);
    --sombra-media: 0 15px 35px rgba(155, 89, 182, 0.3);
    --sombra-forte: 0 20px 40px rgba(155, 89, 182, 0.4);
}

/* Hero Banner */
.hero-banner {
    min-height: 100vh;
    background-image: url('../img/banner1.jpeg');
    background-size: cover;
    background-position: right bottom; /* Direita inferior */
background-position: 80% 70%; /* Posicionamento por porcentagem */
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    padding: 2rem 0;
    overflow: hidden;
}

/* Overlay para melhor legibilidade do texto */
.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(155, 89, 182, 0.2); /* 20% de overlay */
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

/* Texto do Hero */
.hero-text {
    color: var(--branco);
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Visual do Hero */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
}

.hero-image-placeholder {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 16/9;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--sombra-suave);
}

.video-preview {
    text-align: center;
    color: var(--branco);
}

.play-button {
    margin-bottom: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.video-text {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Elementos decorativos */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 20%;
    animation-delay: 4s;
}

/* Animações */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-banner {
        background-attachment: scroll; /* Remove fixed no mobile para melhor performance */
        align-items: flex-start; /* Alinha o conteúdo ao topo */
        padding: 1rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        min-height: auto;
        margin-top: 8rem; /* Texto mais rente ao topo */
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .decoration-circle {
        display: none;
    }
    
    /* Ajusta o overlay no mobile */
    .hero-banner::before {
        background: rgba(155, 89, 182, 0.2); /* 20% de overlay */

    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 0 1rem;
    }
    
    .hero-content {
        margin-top: 8rem; /* Ainda mais rente ao topo em telas muito pequenas */
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}