/* Estilos para la página de correo electrónico empresarial */

/* Estilos generales para las columnas */
.email-features,
.email-simulator,
.email-price {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Estilos para la columna de características */
.email-features h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    color: #555;
}

.feature-list li img {
    width: 20px;
    margin-right: 10px;
}

/* Estilos para el simulador */
.email-simulator h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}

.email-simulator > p {
    color: #666;
    margin-bottom: 25px;
    font-size: 18px;
}

.simulator-controls {
    margin-bottom: 20px;
}

.quantity-control,
.duration-control {
    margin-bottom: 20px;
}

.quantity-control label,
.duration-control label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

.quantity-input {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.quantity-btn {
    background-color: #f5f5f5;
    border: none;
    color: #333;
    font-size: 18px;
    font-weight: bold;
    height: 40px;
    width: 40px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.quantity-btn:hover {
    background-color: #e0e0e0;
}

#email-quantity {
    border: none;
    text-align: center;
    width: 60px;
    height: 40px;
    font-size: 16px;
    -moz-appearance: textfield;
}

#email-quantity::-webkit-outer-spin-button,
#email-quantity::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#email-duration {
    width: 100%;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 0 10px;
    font-size: 14px;
    color: #555;
}

.renewal-info {
    font-size: 14px;
    color: #888;
    margin-top: 5px;
}

.info-text {
    font-size: 14px;
    color: #666;
    margin-top: auto;
    font-style: italic;
}

/* Estilos para la columna de precio */
.email-price {
    text-align: center;
    justify-content: space-between;
}

.email-price h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.price-display {
    font-size: 60px;
    font-weight: 700;
    color: #0060fe;
    margin-bottom: 30px;
    line-height: 1;
}

.price-display .currency {
    font-size: 36px;
    vertical-align: top;
    position: relative;
    top: 5px;
}

/* Estilos para la transición de actualización */
.updating-prices {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

/* Estilos responsivos */
@media (max-width: 991px) {
    .email-features,
    .email-simulator,
    .email-price {
        margin-bottom: 20px;
    }
}