.hero-page {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 4rem 2rem 2rem;
    color: #000;
    flex-direction: column;
}

.hero-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.hero-text h2 {
    font-size: 1.5rem;
    font-weight: 400;
}

.hero-buttons {
    align-self: flex-end;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #0090d0;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.hero-button:hover {
    background-color: #006fa3;
}

/* Breadcrumb bajo el hero */
.breadcrumb-bar {
    width: 100%;
    background: #dce6f4;
    padding: 1rem 2rem;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text h2 {
        font-size: 1.2rem;
    }

    .hero-buttons {
        align-self: center;
        flex-direction: column;
        width: 100%;
    }

    .hero-button {
        width: 100%;
        text-align: center;
    }
}

