.saber-mas-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px;
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
}

.header-info {
    text-align: center;
    margin-bottom: 60px;
}

.header-info h1 {
    font-size: 2.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1.5px;
    color: #111;
    margin-bottom: 20px;
}

.header-info p {
    font-size: 1.1rem;
    color: #777;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid refinado */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.info-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.info-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.info-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
}

/* Sección CTA al final */
.cta-section {
    text-align: center;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 16px;
}

.btn-contacto {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 30px;
    background: #111;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-contacto:hover {
    background: #d4af37;
}

/* Responsive */
@media (max-width: 768px) {
    .header-info h1 { font-size: 2rem; }
}