.elementor-228 .elementor-element.elementor-element-ede09ff{--display:flex;--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;}/* Start custom CSS for html, class: .elementor-element-1c57008 */body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #fff; /* Fondo de la página */
}

.intro-section {
    background-color: #fff;
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 30px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1 {
    color: #000;
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: bold;
}

.intro-text {
    color: #333;
    font-size: 18px;
    margin-top: 0;
}

.plans-section {
    padding: 20px 20px 50px;
    text-align: center;
    background-color: #fff;
}

.plans-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.plan-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    position: relative;
    text-align: center; /* Alineación central */
    display: flex; /* Flexbox para centrar contenido */
    flex-direction: column; /* Dirección de los elementos en columna */
    align-items: center; /* Centrado horizontal */
    justify-content: center; /* Centrado vertical */
    height: 100%; /* Asegura que el contenedor tome el espacio necesario */
}

.plan-card:hover {
    transform: translateY(-10px);
}

.plan-card h3 {
    font-size: 20px;
    color: #000;
    font-weight: bold;
    margin-bottom: 10px;
}

.price {
    font-size: 22px;
    color: #000066;
    margin: 15px 0;
    font-weight: 600;
}

/* Estilo específico para el valor del precio */
.price-value {
    font-size: 35px; /* Tamaño del valor del precio */
    font-weight: bold; /* Negrita para el valor del precio */
}

.icon {
    font-size: 40px;
    background: linear-gradient(135deg, #000066, #0000cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.plan-card p {
    font-size: 16px;
    margin-top: 10px;
}

.btn-secondary {
    display: block;
    background-color: #000066;
    color: #fff;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 25px;
    margin: 15px auto 0;
    font-weight: bold;
    font-size: 14px;
    transition: background-color 0.3s;
    width: 120px;
    text-align: center;
}

.btn-secondary:hover {
    background-color: #0000cc;
}

/* Estilo de la etiqueta de oferta especial */
.tag {
    background-color: #28a745;
    color: #fff;
    padding: 3px 8px;
    border-radius: 3px;
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 12px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .plans-container {
        flex-direction: column;
        align-items: center;
    }

    .plan-card {
        width: 90%;
    }

    h1 {
        font-size: 24px; /* Título más pequeño para móviles */
    }
}

/* Estilo agregado para el costo fijo */
.fixed-cost {
    font-size: 14px;
    font-weight: bold;
    color: #000066;
}/* End custom CSS */