/* ===============================================================
   PLANOS HERO SECTION - COMPONENTE CSS ESPECÍFICO
   =============================================================== */

/* ===============================================================
   MAIN HERO CONTAINER COMPONENT
   =============================================================== */
.planos-hero-section {
    position: relative;
    background: var(--gradient-primary);
    overflow: hidden;
    padding: 90px 1rem 4rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

/* ===============================================================
   BACKGROUND GRAPHICS COMPONENT
   =============================================================== */
.planos-hero-bg-graphics {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.planos-hero-bg-graphics::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-slow 25s ease-in-out infinite;
}

.planos-hero-bg-graphics::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -15%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-slow 30s ease-in-out infinite reverse;
}

/* ===============================================================
   CONTENT WRAPPER COMPONENT
   =============================================================== */
.planos-hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    color: var(--white);
}

/* ===============================================================
   HEADER CONTENT COMPONENT
   =============================================================== */
.planos-hero-header {
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out;
}

.planos-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
}

.planos-hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.planos-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    color: var(--white);
}

/* ===============================================================
   KEY BENEFITS COMPONENT
   =============================================================== */
.planos-key-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.key-benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-align: left;
}

.key-benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.key-benefit-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.key-benefit-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--white);
}

.key-benefit-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
    color: var(--white);
}

/* ===============================================================
   RESPONSIVE BREAKPOINTS
   =============================================================== */
@media (max-width: 768px) {
    .planos-hero-section {
        padding: 90px 1rem 3rem;
        min-height: 50vh;
    }
    
    .planos-hero-title {
        font-size: 2.2rem;
    }
    
    .planos-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .planos-key-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2.5rem;
    }
    
    .key-benefit-item {
        padding: 1.2rem;
    }
    
    .key-benefit-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .planos-hero-title {
        font-size: 1.9rem;
    }
    
    .planos-hero-subtitle {
        font-size: 1rem;
    }
    
    .key-benefit-item {
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .key-benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .key-benefit-content h3 {
        font-size: 1rem;
    }
    
    .key-benefit-content p {
        font-size: 0.85rem;
    }
}

/* ===============================================================
   ANIMATIONS
   =============================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float-slow {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-30px) rotate(10deg); 
    }
}

/* ===============================================================
   ACCESSIBILITY
   =============================================================== */
@media (prefers-reduced-motion: reduce) {
    .planos-hero-header,
    .planos-key-benefits,
    .planos-hero-bg-graphics::before,
    .planos-hero-bg-graphics::after {
        animation: none;
    }
    
    .key-benefit-item:hover {
        transform: none;
    }
}