/* 
    Hero Banner 2030 - CSS Completo 
*/
.hero-banner-2030 {
    position: relative;
    min-height: 700px;
    height: 100vh;
    padding-top: 120px;
    max-height: 800px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 60, 80, 0.75) !important;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    max-width: 1290px;
    padding: 4rem 2rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    position: absolute;
    left: 0;
    z-index: 0;
}

.hero-logo img {
    width: auto;
    max-height: 500px;
    display: block;
    opacity: 0.85;
    filter: brightness(0) invert(1);
}

/* Números 2030 como fallback */
.hero-numbers {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 280px;
    font-weight: 700;
    line-height: 0.6;
    opacity: 0.85;
    letter-spacing: -0.05em;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    z-index: 0;
}

.hero-numbers span {
    display: block;
}

.hero-text-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    line-height: 1.15;
    color: #ffffff;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.btn-hero {
    display: inline-block;
    padding: 8px 25px;
    border: 2px solid #ffffff;
    border-radius: 25px;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
    background: transparent;
}

.btn-hero:hover {
    background: #ffffff;
    color: #1a4d5c !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

/* Ajustes Tablet */
@media (max-width: 1024px) {
    .hero-banner-2030 {
        min-height: 600px;
        height: 80vh;
    }
    
    .hero-content {
        padding: 4rem 3rem;
    }
    
    .hero-logo img {
        max-height: 300px;
    }
    
    .hero-numbers {
        font-size: 220px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
}

/* Ajustes Mobile - Logo permanece por trás mas menor */
@media (max-width: 768px) {
    .hero-banner-2030 {
        min-height: 550px;
        height: 75vh;
    }
    
    .hero-content {
        padding: 3rem 1.5rem;
    }
    
    .hero-logo {
        left: 1.5rem;
    }
    
    .hero-numbers {
        font-size: 140px;
        left: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

/* Ajustes Mobile pequeno */
@media (max-width: 480px) {
    .hero-banner-2030 {
        min-height: 500px;
        height: 70vh;
    }
    
    .hero-content {
        padding: 2rem 1.5rem;
    }
    
    .hero-logo {
        left: 1rem;
    }
      
    .hero-numbers {
        font-size: 110px;
        left: 1rem;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
    }
}