/* Floating Hero - Hero section con efecto flotante */

.hero-floating {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
    overflow: hidden;
}

.hero-floating::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 117, 32, 0.9), rgba(224, 102, 26, 0.8));
    z-index: 1;
}

.hero-floating .container {
    position: relative;
    z-index: 2;
}

/* Contenido flotante del hero */
.hero-content-floating {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 40px;
    box-shadow: none;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}


.hero-content-floating:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

/* Título del hero flotante */
.hero-title-floating {
    font-size: 3.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle-floating {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Formulario flotante */
.hero-form-floating {
    background: rgba(255, 117, 32, 0.1);
    border-radius: 25px;
    padding: 30px;
    border: 2px solid rgba(255, 117, 32, 0.2);
    transition: all 0.3s ease;
}

.hero-form-floating:hover {
    border-color: rgba(255, 117, 32, 0.4);
    background: rgba(255, 117, 32, 0.15);
}

.hero-form-floating .form-control {
    border-radius: 20px;
    border: 2px solid rgba(255, 117, 32, 0.2);
    padding: 15px 20px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.hero-form-floating .form-control:focus {
    border-color: #ff7520;
    box-shadow: 0 0 0 4px rgba(255, 117, 32, 0.2);
    background: white;
}

.hero-form-floating .btn {
    border-radius: 20px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Botones flotantes */
.btn-floating {
    background: linear-gradient(135deg, #ff7520, #e0661a);
    border: none;
    color: white;
    border-radius: 25px;
    padding: 15px 35px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(255, 117, 32, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-floating::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-floating:hover::before {
    left: 100%;
}

.btn-floating:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 117, 32, 0.4);
    background: linear-gradient(135deg, #e0661a, #cc5a16);
}

.btn-floating:active {
    transform: translateY(-1px);
}

/* Flechas de navegación flotantes */
.hero-nav-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 117, 32, 0.2);
    z-index: 3;
}

.hero-nav-arrows:hover {
    background: #ff7520;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 117, 32, 0.3);
}

.hero-nav-arrows.left {
    left: 30px;
}

.hero-nav-arrows.right {
    right: 30px;
}

/* Puntos de navegación flotantes */
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 117, 32, 0.3);
}

.hero-dot.active {
    background: #ff7520;
    transform: scale(1.2);
    box-shadow: 0 4px 15px rgba(255, 117, 32, 0.4);
}

.hero-dot:hover {
    background: rgba(255, 117, 32, 0.7);
    transform: scale(1.1);
}

/* Responsive para hero flotante */
@media (max-width: 768px) {
    .hero-title-floating {
        font-size: 2.5rem;
    }
    
    .hero-content-floating {
        padding: 30px 25px;
        border-radius: 25px;
    }
    
    .hero-form-floating {
        padding: 25px 20px;
        border-radius: 20px;
    }
    
    .hero-nav-arrows {
        width: 40px;
        height: 40px;
    }
    
    .hero-nav-arrows.left {
        left: 15px;
    }
    
    .hero-nav-arrows.right {
        right: 15px;
    }
}

@media (max-width: 576px) {
    .hero-title-floating {
        font-size: 2rem;
    }
    
    .hero-content-floating {
        padding: 25px 20px;
        border-radius: 20px;
    }
    
    .hero-form-floating {
        padding: 20px 15px;
        border-radius: 15px;
    }
}
