/* VMC Schedule Day - Main Styles */

body {
    margin: 0;
    padding: 0;
}

.vmc-sidebar {
    background: rgb(0,135,154);
    min-height: calc(90vh - 60px);
    padding: 20px;
    color: white;
    position: fixed;
    width: 280px;
    left: 0;
    top: 60px;
    bottom: 60px;
    overflow-y: auto;
    z-index: 999;
}

.vmc-main-content {
    margin-left: 280px;
    min-height: calc(100vh - 120px);
    padding: 40px 20px 80px;
    background: #f8f9fa;
}

.step-item {
    padding: 15px;
    margin: 10px 0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.step-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(5px);
}

.step-item.active {
    background: rgba(255,255,255,0.2);
    border-color: #fff;
    transform: translateX(10px);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    margin-right: 15px;
    font-weight: bold;
}

.form-section {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.form-section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.contact-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.3);
}

.contact-item {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.contact-item i {
    width: 25px;
    margin-right: 10px;
    color: #ffd700;
}

.form-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 40px;
    margin: 20px 0;
}

.form-control {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    padding: 12px 16px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: rgb(0,135,154);
    box-shadow: 0 0 0 0.2rem rgba(0, 135, 154, 0.25);
}

.btn-vmc {
    background: rgb(0,135,154);
    border: none;
    border-radius: 8px;
    padding: 12px 30px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-vmc:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 135, 154, 0.4);
    background: rgb(0, 155, 174);
    color: white;
}

@media (max-width: 768px) {
    .vmc-sidebar {
        position: static;
        width: 100%;
        min-height: auto;
    }
    .vmc-main-content {
        margin-left: 0;
    }
}

/* Estilos para step condicional */
.step-item.conditional-hidden {
    opacity: 0.3;
    pointer-events: none;
    transform: translateX(-10px);
}

.step-item.conditional-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}