/*
 * Custom code goes here.
 * A template should always ship with an empty custom.css
 */

/* Contenedor Principal */
.mbed-main-wrapper {
    font-family: 'Poppins', sans-serif;
    color: #2c3e50;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.mbed-hero-section {
    text-align: center;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 50px 20px;
    border-radius: 15px;
    color: white;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(30, 60, 114, 0.2);
}

.mbed-main-title { color: white !important; font-size: 2.5rem; font-weight: 700; margin-bottom: 10px; }
.mbed-main-subtitle { color: white;font-size: 1.1rem; opacity: 0.9; }

/* Cards */
.mbed-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.mbed-glass-card {
    background: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 12px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mbed-glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.mbed-section-title {
    color: #1e3c72;
    font-size: 1.4rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f4f8;
    padding-bottom: 10px;
}

/* Listas y Tags */
.mbed-step-list { list-style: none; padding: 0; }
.mbed-step-list li { margin-bottom: 12px; display: flex; align-items: center; }
.step-num {
    background: #2a5298;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    margin-right: 12px;
}

.mbed-tag {
    display: block;
    background: #f0f7ff;
    color: #1e3c72;
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 8px;
    font-weight: 500;
}

/* Tabla */
.mbed-custom-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.mbed-custom-table th {
    background: #f8f9fa;
    color: #1e3c72;
    padding: 15px;
    text-align: left;
}

.mbed-custom-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

/* Botones */
.mbed-cta-box {
    text-align: center;
    background: #f4f8fb;
    padding: 40px;
    border-radius: 15px;
    margin-top: 30px;
}

.mbed-buttons-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.mbed-btn {
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none !important;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.mbed-btn-mail { background: #1e3c72; color: white !important; }
.mbed-btn-wpp { background: #25d366; color: white !important; }

.mbed-btn:hover { opacity: 0.9; transform: scale(1.05); }

/* Responsive */
@media (max-width: 768px) {
    .mbed-grid-container { grid-template-columns: 1fr; }
    .mbed-buttons-group { flex-direction: column; }
}



