/**
 * Rocha Hero Widget - Rocha Brothers Group
 * Foto de fondo, gradiente difuminado, logo centro, texto abajo
 * Mobile-first, responsive (incl. modo phone)
 */

.rocha-hero-wrapper {
    position: relative;
    width: 100%;
    min-height: 70vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
} 

.rocha-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.rocha-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 1.5rem 1rem 2rem;
    gap: 1.5rem;
}

.rocha-hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
}

.rocha-hero-logo img {
    max-width: 180px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.rocha-hero-logo-text {
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.rocha-hero-logo-prefix {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.rocha-hero-logo-main {
    font-size: 2.25rem;
    line-height: 1.1;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.rocha-hero-logo-main .highlight {
    color: #e85d04;
}

.rocha-hero-logo-suffix {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.rocha-hero-text {
    width: 100%;
    max-width: 800px;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: left;
}

@media (max-width: 575px) {
    .rocha-hero-wrapper { min-height: 60vh; }
    .rocha-hero-inner { padding: 1rem 0.875rem 1.5rem; gap: 1rem; }
    .rocha-hero-logo img { max-width: 140px; }
    .rocha-hero-logo-prefix { font-size: 0.8rem; }
    .rocha-hero-logo-main { font-size: 1.75rem; }
    .rocha-hero-logo-suffix { font-size: 0.8rem; }
    .rocha-hero-text { font-size: 0.8rem; line-height: 1.55; }
}

@media (min-width: 768px) {
    .rocha-hero-inner { padding: 2rem 1.5rem 2.5rem; gap: 2rem; }
    .rocha-hero-logo img { max-width: 220px; }
    .rocha-hero-logo-prefix { font-size: 1.1rem; }
    .rocha-hero-logo-main { font-size: 3rem; }
    .rocha-hero-logo-suffix { font-size: 1.1rem; }
    .rocha-hero-text { font-size: 1rem; }
}

@media (min-width: 1024px) {
    .rocha-hero-inner { padding: 2.5rem 2rem 3rem; gap: 2.5rem; }
    .rocha-hero-logo img { max-width: 260px; }
    .rocha-hero-logo-prefix { font-size: 1.25rem; }
    .rocha-hero-logo-main { font-size: 3.5rem; }
    .rocha-hero-logo-suffix { font-size: 1.25rem; }
    .rocha-hero-text { font-size: 1.05rem; line-height: 1.65; }
}

@media (min-width: 1440px) {
    .rocha-hero-logo-main { font-size: 4rem; }
    .rocha-hero-text { font-size: 1.1rem; }
}
