/* ==========================================================
   SECCIÓN 1: INICIO (HERO)
   ========================================================== */
#inicio {
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.85)),
        url('../img_fondo/pagina_principal.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    justify-content: space-between;
    padding-top: 150px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 90px 10% 50px 10%;
    overflow: hidden;
}

.hero-actions {
    max-width: 650px;
    align-self: flex-start;
    animation: fadeInUp 1s ease;
}

.hero-actions h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: var(--texto-brillante);
}

.subtitulo {
    font-size: 1.15rem;
    color: var(--texto-secundario);
    margin-bottom: 40px;
}

.info-extra {
    margin-top: 30px;
    border-left: 4px solid var(--azul-claro);
    padding-left: 20px;
}

.info-extra h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5px;
    background: var(--gradiente-acento);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-extra p {
    font-size: 1.05rem;
    color: var(--texto-secundario);
    max-width: 450px;
}

.cta-hero {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-cta {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gradiente-cta);
    color: var(--blanco);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(167, 46, 42, 0.2);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(167, 46, 42, 0.5);
}

/* Carrusel de marcas inferior */
.marcas-inferior {
    width: 100%;
    padding: 20px 0;
    border-top: 1px solid var(--gris-borde);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    margin-bottom: 40px;
}

.tallerpro-carousel {
    overflow: hidden;
    width: 100%;
}

.tallerpro-carousel-track {
    display: flex;
    gap: 80px;
    align-items: center;
}

.tallerpro-carousel img {
    height: 40px;
    object-fit: contain;
    opacity: 0.4;
    filter: grayscale(1);
    transition: all 0.3s ease;
}

.tallerpro-carousel img:hover {
    opacity: 0.95;
    filter: grayscale(0);
    transform: scale(1.1);
}

/* INDICADOR DE SCROLL */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
    text-decoration: none;
}

.scroll-indicator i {
    font-size: 1.2rem;
    color: var(--azul-claro);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}
