/* ========================================
   HERO SECTION - Workshop Sem Bloqueios
   ========================================*/

/* Importar variáveis de cores */
@import url('variables.css');

/* Reset e configurações globais para hero */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container da Hero Section */
.hero {
    min-height: 100vh;
    background: var(--gradient-dark);
    position: relative;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 600px;
}

/* Texto da Hero */
.hero-text {
    color: var(--text-white);
}

.hero-date {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-gray-300);
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.highlight {
    color: var(--color-purple);
    display: inline-block;
}

.ia-highlight {
    color: var(--color-yellow);
    font-weight: 900;
}

.hero-description {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 3rem;
}

/* CTA Button */
.cta-button {
    background: var(--gradient-yellow);
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--yellow-30);
    text-decoration: none; /* Remove sublinhado do link */
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--yellow-40);
    background: var(--gradient-yellow-hover);
}

.cta-button:active {
    transform: translateY(0);
}

/* Seção da Imagem */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.hero-photo {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px var(--black-30);
    transition: transform 0.3s ease;
}

.hero-photo:hover {
    transform: scale(1.02);
}

/* Dots da imagem */
.image-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--white-40);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--color-yellow);
    box-shadow: 0 0 20px var(--yellow-50);
}

.dot:hover {
    background: var(--white-70);
}

/* Background decorativo */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.circle-decoration {
    position: absolute;
    top: 50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--purple-10) 0%, transparent 70%);
    border-radius: 50%;
    transform: translateY(-50%);
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(-50%) translateX(0) rotate(0deg); 
    }
    50% { 
        transform: translateY(-60%) translateX(20px) rotate(5deg); 
    }
}

/* ========================================
   RESPONSIVIDADE
   ========================================*/

/* Tablets */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-content {
        gap: 3rem;
    }
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 1.2rem 3rem;
        font-size: 1.1rem;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .hero-container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-description br {
        display: none;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .image-container {
        max-width: 350px;
    }
    
    .circle-decoration {
        width: 400px;
        height: 400px;
        left: -20%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-date {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
}
