/* Estilos comunes para el hero en todas las páginas */
.hero {
    position: relative;
    padding: 100px 0 60px; /* Reducido el padding superior e inferior */
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    margin-top: 55px; /* Altura del header */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 2.5rem; /* Reducido de 3rem */
    font-weight: 800;
    margin-bottom: 15px;
    color: #0a4b2a;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.hero p {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* Ajustes para móviles */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}

/* Estilos para la marquesina */
.marquee-container {
    background: linear-gradient(90deg, #0a4b2a, #11914b);
    color: white;
    padding: 8px 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    height: 25px; /* Reducido de 30px */
    display: flex;
    align-items: center;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.marquee-text {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-right: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.marquee-logo,
.marquee-icon {
    height: 20px; /* Reducido de 25px */
    width: auto;
    animation: floatSubtle 6s ease-in-out infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Ajuste del header para que no se oculte detrás de la marquesina */
header {
    top: 25px; /* Ajustado para la nueva altura de la marquesina */
}

/* Ajuste del espaciado del contenido principal */
.site-container {
    padding-top: 0;
    margin-top: 0;
}
