@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Noto+Serif+Display:wght@500;600;700&display=swap');

.andorina-wrapper {
    font-family: 'Lato', sans-serif;
    color: #1a202c;
}

.andorina-seccion-titulo {
    font-family: 'Noto Serif Display', serif;
    font-size: 1.8rem;
    color: #1a365d;
    margin: 40px 0 20px;
    font-weight: bold;
}

.andorina-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

@media (min-width: 650px) {
    .andorina-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .andorina-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Fichas con fondo semi-transparente y sombra difuminada elegante */
.andorina-wrapper .andorina-grid .andorina-card {
    background: rgba(240, 247, 255, 0.5) !important;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(11, 23, 54, 0.08) !important; /* Sombra suave usando el tono oscuro */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efecto visual opcional al pasar el mouse */
.andorina-wrapper .andorina-grid .andorina-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(11, 23, 54, 0.12) !important;
}

.andorina-icon-placeholder {
    width: 44px;
    height: 44px;
    background-color: #F8FAFD;
    opacity: 0.5;
    border-radius: 50%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.andorina-icon-placeholder svg,
.andorina-icon-placeholder svg * {
    fill: none !important;
    stroke: #3182ce !important;
    stroke-width: 1.5 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

.andorina-icon-placeholder svg {
    width: 22px !important;
    height: 22px !important;
    display: block;
}

.andorina-card h3 {
    font-family: 'Noto Serif Display', serif;
    color: #1a202c;
    font-size: 1.25rem;
    margin: 0 0 15px 0;
    font-weight: bold;
}

.subtitulo-principal {
    font-size: 0.95rem;
    color: #2d3748;
    line-height: 1.4;
    margin-bottom: 15px;
}

.subtitulo {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.5;
    margin-bottom: 12px;
    font-weight: 600;
}

.andorina-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.andorina-content ul:last-child {
    margin-bottom: 0;
}

.andorina-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: #2d3748;
    line-height: 1.4;
}

.andorina-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #3182ce;
    font-weight: bold;
    background: #e0f2fe;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}