/* REVOLUT STYLE FULLSCREEN HERO */

.revolut-hero {
    position: relative;
    height: 100vh; /* Ocupa toda la pantalla */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1b1b1b;
    overflow: hidden;
    margin-top: -80px; /* Compensa el padding-top del main para subir hasta arriba */
}

.revolut-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.revolut-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.6) grayscale(20%); /* Oscurece la imagen para que el texto resalte */
}

/* Gradient overlay para extra legibilidad */
.revolut-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 2;
}

.revolut-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 80px; /* Espacio para el menú superior */
}

.revolut-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 64px; /* Tamaño masivo estilo Revolut */
    font-weight: 600; /* Igual que hero-title */
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.revolut-hero-title span {
    color: var(--neon, #50E3C2); /* Acento Triuvo */
    font-weight: 300; /* Igual que text-blue */
}

.revolut-hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 300;
    color: #e0e0e0;
    line-height: 1.5;
    max-width: 750px;
    margin-bottom: 40px;
}

.revolut-hero-cta {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background-color: transparent;
    border: 1px solid var(--neon, #50E3C2);
    padding: 18px 40px;
    border-radius: 0;
    text-decoration: none;
    transition: transform 0.3s, background-color 0.3s, color 0.3s, box-shadow 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.revolut-hero-cta:hover {
    background-color: var(--neon, #50E3C2);
    color: #1b1b1b !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(80, 227, 194, 0.3);
}

@media (max-width: 768px) {
    .revolut-hero-title { font-size: 42px; }
    .revolut-hero-desc { font-size: 18px; }
}
