/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 960px;
    margin: 20px auto;
    padding: 20px;
    text-align: center;
}

.back-link-container {
    text-align: left;
    margin-top: 20px;
}

.back-link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.header {
    margin-bottom: 40px;
}

.logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 10px;
}

.main-title {
    font-size: 2.5em;
    color: #041625;
    margin: 0;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    color: #555;
}

/* Estilos para la cuadrícula de servicios */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    padding: 25px;
    width: 100%;
    max-width: 280px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.service-card .price {
    font-size: 1.5rem;
    color: #041625;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Estilos para el botón de compra */
.mercadopago-button {
    background-color: #007bff !important;
    color: white !important;
    padding: 12px 25px !important;
    text-decoration: none !important;
    border-radius: 5px !important;
    font-weight: 700 !important;
    transition: background-color 0.3s ease, transform 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
    font-size: 1rem !important;
}

.mercadopago-button:hover {
    background-color: #0056b3 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .main-title {
        font-size: 2em;
    }
}