/* Common Button Styles - Unified across all pages */

/* Primary Action Buttons (Used for main CTAs) */
.btn-inscripcion,
.btn-turno,
.btn-start {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #0088cc 0%, #005a8a 100%);
    color: white !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
    border: none;
    cursor: pointer;
}

.btn-inscripcion:hover,
.btn-turno:hover,
.btn-start:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
    color: white !important;
    text-decoration: none;
}

.btn-inscripcion i,
.btn-turno i,
.btn-start i {
    margin-right: 10px;
}

/* Bootstrap Override - Primary Buttons */
.btn-primary {
    background: linear-gradient(135deg, #0088cc 0%, #005a8a 100%);
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: linear-gradient(135deg, #006699 0%, #004466 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.4);
    border: none;
}

/* Bootstrap Override - Secondary Buttons */
.btn-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
    border: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
    background: linear-gradient(135deg, #5a6268 0%, #545b62 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.3);
    border: none;
}

/* Bootstrap Override - Success Buttons */
.btn-success {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    border: none;
    transition: all 0.3s ease;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active {
    background: linear-gradient(135deg, #218838 0%, #1c7430 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
    border: none;
}

/* Bootstrap Override - Outline Buttons */
.btn-outline-secondary {
    border: 2px solid #6c757d;
    color: #6c757d;
    background: white;
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus,
.btn-outline-secondary:active {
    background: #6c757d;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.3);
    border: 2px solid #6c757d;
}

.btn-outline-primary {
    border: 2px solid #0088cc;
    color: #0088cc;
    background: white;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    background: linear-gradient(135deg, #0088cc 0%, #005a8a 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.3);
    border: 2px solid #0088cc;
}

/* Large Buttons */
.btn-lg {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
}

/* Medium Buttons */
.btn {
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Button Icons */
.btn i {
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(2px);
}

/* Call to Action Buttons */
.call-to-action-btn {
    text-align: center;
    margin-top: 30px;
}

.call-to-action-btn .btn {
    min-width: 200px;
}

/* Modern Button Style */
.btn-modern {
    border-radius: 50px;
    padding: 12px 35px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Rounded Buttons */
.btn-rounded {
    border-radius: 50px;
}

/* Form Action Buttons */
.form-actions {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.form-actions .btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .btn-lg {
        padding: 12px 30px;
        font-size: 16px;
    }

    .btn-inscripcion,
    .btn-turno,
    .btn-start {
        padding: 12px 30px;
        font-size: 16px;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        width: 100%;
    }

    .call-to-action-btn .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .btn-lg {
        padding: 10px 25px;
        font-size: 15px;
    }

    .btn-inscripcion,
    .btn-turno,
    .btn-start {
        padding: 10px 25px;
        font-size: 15px;
        width: 100%;
        text-align: center;
    }
}
