.elementor-1544 .elementor-element.elementor-element-9698d7b{--display:flex;--min-height:100vh;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-6394e1d */* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #ffffff;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: center;
}

.main-header {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.logo {
    width: 60px;
    margin-bottom: 10px;
}

.main-header h1 {
    font-size: 24px;
    color: #444;
    font-weight: 600;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 1200px;
    padding: 0;
}

.card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    width: 220px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.card h2 {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
    height: 40px; /* Asegura alineaci贸n si el texto rompe l铆nea */
    display: flex;
    align-items: center;
}

.icon-container {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-container img {
    max-width: 100px;
    max-height: 100px;
}

.dt-logo {
    border-radius: 50%;
}

.btn {
    text-decoration: none;
    color: white!important;
    background-color: #6a96d3; /* Color azul de la imagen */
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
    width: 100%;
    transition: background 0.2s;
}

.btn:hover {
    background-color: #5583c2;
}

.btn-group {
    display: flex;
    gap: 5px;
    width: 100%;
}

.btn-group .btn {
    padding: 8px 5px;
    font-size: 12px;
}

.main-footer {
    margin-top: auto;
    padding: 40px 20px;
    text-align: center;
    font-size: 12px;
    color: #666;
    line-height: 1.8;
}

/* Responsivo para m贸viles */
@media (max-width: 600px) {
    .card {
        width: 100%;
        max-width: 300px;
    }
}/* End custom CSS */