.s24h-custodia {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.s24h-header {
    text-align: center;
    margin-bottom: 40px;
}

.s24h-badge {
    display: inline-block;
    background: #ff6f61;
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.s24h-header h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.lead {
    font-size: 1.1rem;
    color: #666;
}

.s24h-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.s24h-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.s24h-card.s24h-visible {
    opacity: 1;
    transform: translateY(0);
}

.s24h-keyicon {
    margin-bottom: 15px;
    color: #940e02;
}

.s24h-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #222;
}

.s24h-card p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
}

.s24h-cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.s24h-btn {
    background: #dc2716;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.s24h-btn:hover {
    background: #e85b50;
}

.s24h-link {
    background: transparent;
    border: 1px solid #ff6f61;
    color: #ff6f61;
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.s24h-link:hover {
    background: #ff6f61;
    color: #fff;
}

.s24h-tag {
    display: inline-block;
    background: #f0f0f0;
    color: #555;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
}
